Skip to content

Commit cd09fd2

Browse files
authored
Allow warnings in examples compilation (#3020)
## Motivation and Context ** needs backport ** Allow warnings in examples compilation ## Description <!--- Describe your changes in detail --> ## Testing Verified that `RUSTFLAGS=""` works as expected. ---- _By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._
1 parent 2011da4 commit cd09fd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/ci-scripts/check-aws-sdk-examples

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cd aws-sdk/examples
1313
for example in *; do
1414
echo -e "${C_YELLOW}Checking examples/${example}...${C_RESET}"
1515
pushd "${example}" &>/dev/null
16-
cargo check
16+
RUSTFLAGS="" cargo check
1717
cargo clean
1818
popd &>/dev/null
1919
done

0 commit comments

Comments
 (0)