Skip to content

Commit a188873

Browse files
committed
Use --all-features in CI
1 parent 783b783 commit a188873

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -438,15 +438,15 @@ jobs:
438438
- run:
439439
name: Build library for native target (all features)
440440
working_directory: ~/project/packages/std
441-
command: cargo build --locked --features abort,iterator,staking,stargate,cosmwasm_2_1
441+
command: cargo build --locked --all-features
442442
- run:
443443
name: Build library for wasm target (all features)
444444
working_directory: ~/project/packages/std
445-
command: cargo wasm --locked --features abort,iterator,staking,stargate,cosmwasm_2_1
445+
command: cargo wasm --locked --all-features
446446
- run:
447447
name: Run unit tests (all features)
448448
working_directory: ~/project/packages/std
449-
command: cargo test --locked --features abort,iterator,staking,stargate,cosmwasm_2_1
449+
command: cargo test --locked --all-features
450450
- save_cache:
451451
paths:
452452
- /usr/local/cargo/registry
@@ -1037,7 +1037,7 @@ jobs:
10371037
- run:
10381038
name: Clippy linting on std (all feature flags)
10391039
working_directory: ~/project/packages/std
1040-
command: cargo clippy --all-targets --tests --features abort,iterator,staking,stargate,cosmwasm_2_1 -- -D warnings
1040+
command: cargo clippy --all-targets --tests --all-features -- -D warnings
10411041
- run:
10421042
name: Clippy linting on vm (no feature flags)
10431043
working_directory: ~/project/packages/vm

0 commit comments

Comments
 (0)