Merge pull request #3300 from phansch/travis_windows

Add Travis windows build
This commit is contained in:
Philipp Hansch 2018-10-12 09:27:32 +02:00 committed by GitHub
commit e03a06b285
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 2 deletions

View file

@ -5,6 +5,7 @@ rust: nightly
os:
- linux
- osx
- windows
sudo: false
@ -23,7 +24,7 @@ before_install:
install:
- |
if [ -z ${INTEGRATION} ]; then
if [ -z ${INTEGRATION} ] && [ "$TRAVIS_OS_NAME" == "linux" ]; then
. $HOME/.nvm/nvm.sh
nvm install stable
nvm use stable
@ -36,6 +37,8 @@ matrix:
env: BASE_TESTS=true
- os: linux
env: BASE_TESTS=true
- os: windows
env: BASE_TEST=true
- env: INTEGRATION=rust-lang/cargo
- env: INTEGRATION=rust-lang-nursery/rand
- env: INTEGRATION=rust-lang-nursery/stdsimd
@ -49,10 +52,14 @@ matrix:
- env: INTEGRATION=serde-rs/serde
- env: INTEGRATION=Geal/nom
- env: INTEGRATION=hyperium/hyper
allow_failures:
- os: windows
env: BASE_TEST=true
# prevent these jobs with default env vars
exclude:
- os: linux
- os: osx
- os: windows
script:
- |

View file

@ -14,7 +14,9 @@ set -ex
echo "Running clippy base tests"
PATH=$PATH:./node_modules/.bin
remark -f *.md > /dev/null
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
remark -f *.md > /dev/null
fi
# build clippy in debug mode and run tests
cargo build --features debugging
cargo test --features debugging