test_nightly.sh 314 B

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