num-traits/.travis/test_nightly.sh

16 lines
369 B
Bash
Raw Normal View History

#!/bin/sh
set -ex
cargo bench --verbose
cargo test --verbose --manifest-path=macros/Cargo.toml
cargo test --verbose --manifest-path=derive/Cargo.toml
2016-08-17 10:19:51 +00:00
# Build test for the serde feature
cargo build --verbose --features "serde"
2016-08-17 21:12:20 +00:00
# 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"