test_nightly.sh 369 B

123456789101112131415
  1. #!/bin/sh
  2. set -ex
  3. cargo bench --verbose
  4. cargo test --verbose --manifest-path=macros/Cargo.toml
  5. cargo test --verbose --manifest-path=derive/Cargo.toml
  6. # Build test for the serde feature
  7. cargo build --verbose --features "serde"
  8. # Downgrade serde and build test the 0.7.0 channel as well
  9. cargo update -p serde --precise 0.7.0
  10. cargo build --verbose --features "serde"