summaryrefslogtreecommitdiffstats
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-03-07 00:18:42 -0500
committerGitHub <noreply@github.com>2023-03-07 00:18:42 -0500
commit9c197d0cf68a7dbd30ac9f35a9563ef118c3a596 (patch)
tree32dd31fcadb18cbcf9ef72396a63f227b003b7b7 /.cirrus.yml
parentb7456841566e6e526af028368d0a0149392b176e (diff)
ci: do no feature first in cirrus (#1048)
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index caf99c96..c9d091f1 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -55,18 +55,18 @@ test_task:
image: ghcr.io/cirruslabs/macos-monterey-base:latest
<<: *SETUP_TEMPLATE
<<: *CACHE_TEMPLATE
- test_all_feature_script:
- - . $HOME/.cargo/env
- - cargo fmt --all -- --check
- - cargo test --no-run --locked --all-features
- - cargo test --no-fail-fast --all-features -- --nocapture --quiet
- - cargo clippy --all-targets --workspace --all-features -- -D warnings
test_no_feature_script:
- . $HOME/.cargo/env
- cargo fmt --all -- --check
- cargo test --no-run --locked --no-default-features
- cargo test --no-fail-fast --no-default-features -- --nocapture --quiet
- cargo clippy --all-targets --workspace --no-default-features -- -D warnings
+ test_all_feature_script:
+ - . $HOME/.cargo/env
+ - cargo fmt --all -- --check
+ - cargo test --no-run --locked --all-features
+ - cargo test --no-fail-fast --all-features -- --nocapture --quiet
+ - cargo clippy --all-targets --workspace --all-features -- -D warnings
<<: *CLEANUP_TEMPLATE
build_task: