-
Notifications
You must be signed in to change notification settings - Fork 468
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
527: Check all feature combinations works properly on CI r=stjepang a=taiki-e This adds a check for all feature combinations to CI. *This originally suggested by @jonhoo in #504 (comment) Co-authored-by: Taiki Endo <[email protected]>
- Loading branch information
Showing
9 changed files
with
56 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/bin/bash | ||
|
||
set -ex | ||
|
||
if [[ ! -x "$(command -v cargo-hack)" ]]; then | ||
cargo install --debug cargo-hack || exit 1 | ||
fi | ||
|
||
if [[ "$RUST_VERSION" != "nightly"* ]]; then | ||
# On MSRV, features other than nightly should work. | ||
# * `--feature-powerset` - run for the feature powerset which includes --no-default-features and default features of package | ||
# * `--no-dev-deps` - build without dev-dependencies to avoid https://github.com/rust-lang/cargo/issues/4866 | ||
# * `--exclude benchmarks` - benchmarks doesn't published. | ||
# * `--skip nightly` - skip `nightly` feature as requires nightly compilers. | ||
cargo hack check --all --feature-powerset --no-dev-deps --exclude benchmarks --skip nightly | ||
else | ||
# On nightly, all feature combinations should work. | ||
cargo hack check --all --feature-powerset --no-dev-deps --exclude benchmarks | ||
# TODO(taiki-e): if https://github.com/taiki-e/cargo-hack/issues/42 merged, remove this. | ||
cargo hack check --all --all-features --no-dev-deps --exclude benchmarks | ||
|
||
# Check for no_std environment. | ||
cargo hack check --all --feature-powerset --no-dev-deps --exclude benchmarks --target thumbv7m-none-eabi --skip std,default | ||
# * `--features nightly` is required for enable `cfg_target_has_atomic`. | ||
# * `--ignore-unknown-features` - some crates doesn't have 'nightly' feature | ||
cargo hack check --all --feature-powerset --no-dev-deps --exclude benchmarks --target thumbv6m-none-eabi --skip std,default --features nightly --ignore-unknown-features | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters