test_full.sh 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #!/bin/bash
  2. set -ex
  3. echo Testing num on rustc ${TRAVIS_RUST_VERSION:=$1}
  4. # All of these packages should build and test everywhere.
  5. for package in bigint complex integer iter rational traits; do
  6. cargo build --manifest-path $package/Cargo.toml
  7. cargo test --manifest-path $package/Cargo.toml
  8. done
  9. # Only num-tratis supports no_std at the moment.
  10. cargo build --manifest-path traits/Cargo.toml --no-default-features
  11. cargo test --manifest-path traits/Cargo.toml --no-default-features
  12. # Each isolated feature should also work everywhere.
  13. for feature in '' bigint rational complex; do
  14. cargo build --verbose --no-default-features --features="$feature"
  15. cargo test --verbose --no-default-features --features="$feature"
  16. done
  17. # Build test for the serde feature
  18. cargo build --verbose --features "serde"
  19. # Downgrade serde and build test the 0.7.0 channel as well
  20. cargo update -p serde --precise 0.7.0
  21. cargo build --verbose --features "serde"
  22. if [ "$TRAVIS_RUST_VERSION" = 1.8.0 ]; then exit; fi
  23. # num-derive should build on 1.15.0+
  24. cargo build --verbose --manifest-path=derive/Cargo.toml
  25. if [ "$TRAVIS_RUST_VERSION" != nightly ]; then exit; fi
  26. # num-derive testing requires compiletest_rs, which requires nightly
  27. cargo test --verbose --manifest-path=derive/Cargo.toml
  28. # num-macros only works on nightly, soon to be deprecated
  29. cargo build --verbose --manifest-path=macros/Cargo.toml
  30. cargo test --verbose --manifest-path=macros/Cargo.toml
  31. # benchmarks only work on nightly
  32. cargo bench --verbose