File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -338,6 +338,8 @@ jobs:
338338 test-runtime-architectures :
339339 name : Test Runtime (${{ matrix.target }})
340340 runs-on : ubuntu-latest
341+ permissions :
342+ contents : read
341343 strategy :
342344 fail-fast : false
343345 matrix :
@@ -349,7 +351,6 @@ jobs:
349351 steps :
350352 - uses : actions/checkout@v4
351353 with :
352- path : smithy-rs
353354 ref : ${{ inputs.git_ref }}
354355 - uses : dtolnay/rust-toolchain@master
355356 with :
@@ -358,11 +359,11 @@ jobs:
358359 - name : Install cross
359360 run : cargo install cross --git https://github.com/cross-rs/cross
360361 - name : Test smithy-rs runtime on ${{ matrix.target }}
361- working-directory : smithy-rs/rust-runtime
362- run : cross test --target ${{ matrix.target }} --workspace
362+ shell : bash
363+ run : cross test --target ${{ matrix.target }} --manifest-path "rust-runtime/Cargo.toml" -- workspace --exclude aws-smithy-http-server-python --exclude aws-smithy-http-server-typescript --exclude aws-smithy-experimental --exclude aws-smithy-http-client
363364 - name : Test AWS runtime on ${{ matrix.target }}
364- working-directory : smithy-rs/aws/rust-runtime
365- run : cross test --target ${{ matrix.target }} --workspace
365+ shell : bash
366+ run : cross test --target ${{ matrix.target }} --manifest-path "aws/rust-runtime/Cargo.toml" -- workspace
366367
367368 # Run the canary against generated SDKs
368369 #
You can’t perform that action at this time.
0 commit comments