Skip to content

Commit b7b1ac7

Browse files
committed
Use --all-features in CI and update description
1 parent 4c9aaef commit b7b1ac7

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.circleci/config.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -58,29 +58,29 @@ jobs:
5858
name: Add wasm32 target
5959
command: rustup target add wasm32-unknown-unknown && rustup target list --installed
6060
- run:
61-
name: Build library for native target
61+
name: Build library for native target (no features)
6262
working_directory: ~/project/packages/std
6363
command: cargo build --locked --no-default-features
6464
- run:
65-
name: Build library for wasm target
65+
name: Build library for wasm target (no features)
6666
working_directory: ~/project/packages/std
6767
command: cargo wasm --locked --no-default-features
6868
- run:
69-
name: Run unit tests
69+
name: Run unit tests (no features)
7070
working_directory: ~/project/packages/std
7171
command: cargo test --locked --no-default-features
7272
- run:
73-
name: Build library for native target (with iterator support)
73+
name: Build library for native target (all features)
7474
working_directory: ~/project/packages/std
75-
command: cargo build --locked --features iterator
75+
command: cargo build --locked --all-features
7676
- run:
77-
name: Build library for wasm target (with iterator support)
77+
name: Build library for wasm target (all features)
7878
working_directory: ~/project/packages/std
79-
command: cargo wasm --locked --features iterator
79+
command: cargo wasm --locked --all-features
8080
- run:
81-
name: Run unit tests (with iterator and staking support)
81+
name: Run unit tests (all features)
8282
working_directory: ~/project/packages/std
83-
command: cargo test --locked --features iterator
83+
command: cargo test --locked --all-features
8484
- run:
8585
name: Build and run schema generator
8686
working_directory: ~/project/packages/std

0 commit comments

Comments
 (0)