rustup.sh 333 B

123456789101112
  1. #!/bin/sh
  2. # Use rustup to locally run the same suite of tests as .travis.yml.
  3. # (You should first install/update 1.8.0, 1.15.0, beta, and nightly.)
  4. set -ex
  5. for toolchain in 1.8.0 1.15.0 beta nightly; do
  6. run="rustup run $toolchain"
  7. $run cargo build --verbose
  8. $run $PWD/ci/test_full.sh $toolchain
  9. $run cargo doc
  10. done