Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 899b0c7

Browse files
committedSep 13, 2018
workaround cargo bug 5364 in CI
1 parent f596e24 commit 899b0c7

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
 

‎ci/run.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,13 @@ echo "STDSIMD_DISABLE_ASSERT_INSTR=${STDSIMD_DISABLE_ASSERT_INSTR}"
5050
echo "STDSIMD_TEST_EVERYTHING=${STDSIMD_TEST_EVERYTHING}"
5151

5252
cargo_test() {
53-
cmd="cargo test --target=$TARGET $1"
54-
cmd="$cmd -p coresimd -p stdsimd"
55-
cmd="$cmd -- $2"
53+
cmd="cargo test --target=$TARGET $1 -- $2"
54+
cd crates/coresimd
5655
$cmd
56+
cd -
57+
cd crates/stdsimd
58+
$cmd
59+
cd -
5760
}
5861

5962
cargo_test

0 commit comments

Comments
 (0)
Please sign in to comment.