rustup.sh 333 B

1234567891011
  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, stable, beta, and nightly.)
  4. set -ex
  5. export TRAVIS_RUST_VERSION
  6. for TRAVIS_RUST_VERSION in 1.8.0 1.15.0 1.20.0 stable beta nightly; do
  7. run="rustup run $TRAVIS_RUST_VERSION"
  8. $run $PWD/ci/test_full.sh
  9. done