Skip to content

Commit 8d0b432

Browse files
committed
Update run.sh
1 parent 9170d35 commit 8d0b432

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

libm/ci/run.sh

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@ TARGET=$1
55

66
CMD="cargo test --all --target $TARGET"
77

8+
# stable by default
89
$CMD
910
$CMD --release
1011

11-
$CMD --features 'stable'
12-
$CMD --release --features 'stable'
12+
# unstable with a feature
13+
$CMD --features 'unstable'
14+
$CMD --release --features 'unstable'
1315

14-
$CMD --features 'stable checked musl-reference-tests'
15-
$CMD --release --features 'stable checked musl-reference-tests'
16+
# also run the reference tests
17+
$CMD --features 'unstable musl-reference-tests'
18+
$CMD --release --features 'unstable musl-reference-tests'

0 commit comments

Comments
 (0)