Skip to content

Commit

Permalink
Debug cargo test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gligneul committed Nov 22, 2024
1 parent e1a5a89 commit 77a55bd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .ci/build_and_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,14 @@ else
cargo build --locked
fi

echo "!!!!!!!!!!! nproc=$(nproc)"

UNAME=$(uname -s)
if [ "$UNAME" == "Darwin" ]; then
# Disable docker tests on MacOS CI
cargo test --no-default-features
else
cargo test
cargo test --no-default-features
fi

cargo test docker

0 comments on commit 77a55bd

Please sign in to comment.