2015-11-19 05:33:07 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
cargo bench --verbose
|
|
|
|
|
2016-03-25 23:34:23 +00:00
|
|
|
cargo test --verbose --manifest-path=macros/Cargo.toml
|
2016-09-28 11:33:13 +00:00
|
|
|
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"
|