From cd09fd27838c711cd64de0e34eedf71387b26cbd Mon Sep 17 00:00:00 2001 From: Russell Cohen Date: Tue, 3 Oct 2023 13:23:29 -0400 Subject: [PATCH] Allow warnings in examples compilation (#3020) ## Motivation and Context ** needs backport ** Allow warnings in examples compilation ## Description ## 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._ --- tools/ci-scripts/check-aws-sdk-examples | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci-scripts/check-aws-sdk-examples b/tools/ci-scripts/check-aws-sdk-examples index 2efc2752a..1bb249bae 100755 --- a/tools/ci-scripts/check-aws-sdk-examples +++ b/tools/ci-scripts/check-aws-sdk-examples @@ -13,7 +13,7 @@ cd aws-sdk/examples for example in *; do echo -e "${C_YELLOW}Checking examples/${example}...${C_RESET}" pushd "${example}" &>/dev/null - cargo check + RUSTFLAGS="" cargo check cargo clean popd &>/dev/null done -- GitLab