Unverified Commit e6537606 authored by Landon James's avatar Landon James Committed by GitHub
Browse files

Merge branch 'main' into landonxjames/nightly-bump

parents 8136ce32 199ee2a7
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -189,6 +189,8 @@ jobs:
          runner: smithy_ubuntu-latest_8-core
        - action: check-aws-sdk-standalone-integration-tests
          runner: ubuntu-latest
        - action: check-aws-sdk-benchmarks
          runner: ubuntu-latest
    steps:
    - uses: GitHubSecurityLab/actions-permissions/monitor@v1
    - uses: actions/checkout@v4
+856 −812

File changed.

Preview size limit exceeded, changes collapsed.

+577 −477

File changed.

Preview size limit exceeded, changes collapsed.

+468 −225

File changed.

Preview size limit exceeded, changes collapsed.

+25 −0
Original line number Diff line number Diff line
#!/bin/bash
#
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
#

C_YELLOW='\033[1;33m'
C_RESET='\033[0m'

set -eux
cd smithy-rs

./gradlew :aws:sdk:assemble

# Build all benchmark directories
pushd aws/sdk/benchmarks
for dir in */; do
    if [ -f "$dir/Cargo.toml" ]; then
        echo -e "${C_YELLOW}# Building benchmark $dir...${C_RESET}"
        pushd "$dir"
        cargo build
        popd
    fi
done
popd