From 404c130034f0a99e6c35b2d8c1fa6349b2bf93b9 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Wed, 31 Jan 2024 16:21:38 +0100 Subject: [PATCH] Mabye this isn't set inside container? --- ci/test.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test.bash b/ci/test.bash index 2c15c60b..163b4b79 100755 --- a/ci/test.bash +++ b/ci/test.bash @@ -39,7 +39,7 @@ $CROSS run --target $TARGET_TRIPLE --manifest-path systest/Cargo.toml --no-defau # Note we skip compiling these targets on CI because the gcc version currently used in # cross for them is 5.4, ~8 years old at this point, hopefully it will be updated...sometime skip_triples=("x86_64-unknown-linux-gnu" "i686-unknown-linux-gnu" "aarch64-unknown-linux-gnu" "arm-unknown-linux-gnueabihf") -if [[ -n "$CI" ]] || ! [[ ${skip_triples[@]} =~ "\<${TARGET_TRIPLE}\>" ]]; then +if [[ -z $CI ]] || ! [[ ${skip_triples[@]} =~ "${TARGET_TRIPLE}" ]]; then echo '=== zlib-ng-no-cmake build ===' $CROSS test --target "$TARGET_TRIPLE" --no-default-features --features zlib-ng-no-cmake $CROSS run --target "$TARGET_TRIPLE" --manifest-path systest/Cargo.toml --no-default-features --features zlib-ng-no-cmake