-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
23: Check formatting in CI r=cuviper a=cuviper Co-authored-by: Josh Stone <[email protected]>
- Loading branch information
Showing
4 changed files
with
45 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
#!/bin/sh | ||
# Use rustup to locally run the same suite of tests as .travis.yml. | ||
# (You should first install/update 1.15.0, stable, beta, and nightly.) | ||
# (You should first install/update the rust versions listed below.) | ||
|
||
set -ex | ||
|
||
export TRAVIS_RUST_VERSION | ||
for TRAVIS_RUST_VERSION in 1.15.0 stable beta nightly; do | ||
for TRAVIS_RUST_VERSION in 1.15.0 1.20.0 1.26.0 1.31.0 stable beta nightly; do | ||
run="rustup run $TRAVIS_RUST_VERSION" | ||
$run cargo build --verbose | ||
$run $PWD/ci/test_full.sh | ||
env FEATURES="full-syntax" $run $PWD/ci/test_full.sh | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters