Skip to content

Commit

Permalink
SF
Browse files Browse the repository at this point in the history
  • Loading branch information
mbwilding committed Oct 16, 2023
1 parent 4955e59 commit 9eab88b
Show file tree
Hide file tree
Showing 17 changed files with 462 additions and 444 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
aws s3 cp "$src" "$dst" > /dev/null 2>&1
echo "Uploaded '$src' to 's3://$bucket_name/$s3_key'"
function_name="benchmark-$name"
function_name="lambda-benchmark-$name"
if aws lambda get-function --function-name "$function_name" > /dev/null 2>&1; then
aws lambda update-function-code --function-name "$function_name" --s3-bucket "$bucket_name" --s3-key "$s3_key" > /dev/null 2>&1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/runtimes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
for memory_size in $memory_sizes
do
function_name="benchmark-${path}-${arch//_/-}-${memory_size}"
function_name="lambda-benchmark-${path}-${arch}-${memory_size}"
if aws lambda get-function --function-name "$function_name" > /dev/null 2>&1; then
aws lambda update-function-code --function-name "$function_name" --s3-bucket "$bucket_name" --s3-key "$s3_key" > /dev/null
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ template.yml
**/target/
**/bin/
**/obj/
**/dist/
41 changes: 41 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
resolver = "2"
members = [
"cfn_gen",
"shared",
"log_processor",
"report_generator"
]
Expand Down
Loading

0 comments on commit 9eab88b

Please sign in to comment.