Skip to content

Commit

Permalink
ci: test serde like other features
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Dec 18, 2017
1 parent 7c802dc commit d0ea919
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions ci/test_full.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,11 @@ cargo build --no-default-features
cargo test --no-default-features

# Each isolated feature should also work everywhere.
for feature in rand rustc-serialize; do
for feature in rand rustc-serialize serde; do
cargo build --verbose --no-default-features --features="$feature"
cargo test --verbose --no-default-features --features="$feature"
done

# Build test for the serde feature
cargo build --verbose --features "serde"

# Downgrade serde and build test the 0.7.0 channel as well
cargo update -p serde --precise 0.7.0
cargo build --verbose --features "serde"
cargo build --verbose --no-default-features --features "serde"

0 comments on commit d0ea919

Please sign in to comment.