Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 2e3da5d

Browse files
committed
check no-default-features and all-features build on CI
1 parent 79ebfa2 commit 2e3da5d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ set -x
55
# Determine configuration
66
export RUSTFLAGS="-D warnings"
77
export CARGO_INCREMENTAL=0
8-
export CARGO_EXTRA_FLAGS="--all-features"
98

109
# Prepare
1110
echo "Build and install miri"
1211
./miri install # implicitly locked
12+
./miri check --no-default-features # make sure this can be built
13+
./miri check --all-features # and this, too
1314
./miri build --all-targets --locked # the build that all the `./miri test` below will use
1415
echo
1516

0 commit comments

Comments
 (0)