Skip to content

Commit

Permalink
Mabye this isn't set inside container?
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle committed Jan 31, 2024
1 parent c8fb0c4 commit 404c130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/test.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 404c130

Please sign in to comment.