rust/.travis.yml

117 lines
3.7 KiB
YAML
Raw Normal View History

2015-04-13 20:51:16 +02:00
language: rust
2017-01-05 19:26:00 +01:00
2015-05-20 09:04:45 +02:00
rust: nightly
2017-01-05 19:26:00 +01:00
os:
- linux
2018-10-05 12:01:52 +02:00
- osx
- windows
2017-01-05 19:26:00 +01:00
2018-10-22 13:09:48 +02:00
branches:
# Don't build these branches
except:
# Used by bors
- trying.tmp
- staging.tmp
2018-10-22 13:09:48 +02:00
2016-03-29 15:15:58 +02:00
env:
global:
2017-08-01 15:19:12 +02:00
- RUST_BACKTRACE=1
2016-03-29 15:15:58 +02:00
2016-05-06 15:32:34 +02:00
install:
- |
2018-10-12 22:04:58 +02:00
if [ -z ${INTEGRATION} ]; then
2018-12-08 12:41:04 +01:00
rustup component add rustfmt || cargo install --git https://github.com/rust-lang/rustfmt/ --force
2018-10-12 22:04:58 +02:00
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
. $HOME/.nvm/nvm.sh
nvm install stable
nvm use stable
npm install remark-cli remark-lint
fi
if [ "$TRAVIS_OS_NAME" == "windows" ]; then
choco install windows-sdk-10.0
fi
fi
2016-05-06 15:32:34 +02:00
2018-11-27 22:01:22 +01:00
# disabling the integration tests in forks should be done with
# if: fork = false
# but this is currently buggy travis-ci/travis-ci#9118
2018-05-16 09:10:35 +02:00
matrix:
fast_finish: true
2018-05-16 09:10:35 +02:00
include:
# Builds that are executed for every PR
2018-10-05 12:01:52 +02:00
- os: osx # run base tests on both platforms
env: BASE_TESTS=true
- os: linux
env: BASE_TESTS=true
- os: windows
env: CARGO_INCREMENTAL=0 BASE_TESTS=true
# Builds that are only executed when a PR is r+ed or a try build is started
# We don't want to run these always because they go towards
# the build limit within the Travis rust-lang account.
# The jobs are approximately sorted by execution time
2019-06-09 20:53:24 +02:00
# disabled cargo and rls integration test due to https://github.com/rust-lang/rust-clippy/issues/4121
#- env: INTEGRATION=rust-lang/cargo
# if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
- env: INTEGRATION=rust-lang-nursery/chalk
if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
2019-06-09 20:53:24 +02:00
#- env: INTEGRATION=rust-lang/rls
# if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
- env: INTEGRATION=Geal/nom
if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
- env: INTEGRATION=rust-lang/rustfmt
if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
- env: INTEGRATION=hyperium/hyper
if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
- env: INTEGRATION=bluss/rust-itertools
if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
- env: INTEGRATION=serde-rs/serde
if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
- env: INTEGRATION=rust-lang-nursery/stdsimd
if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
- env: INTEGRATION=rust-random/rand
if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
- env: INTEGRATION=rust-lang-nursery/futures-rs
if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
- env: INTEGRATION=Marwes/combine
if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
- env: INTEGRATION=rust-lang-nursery/failure
if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
- env: INTEGRATION=rust-lang-nursery/log
if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
- env: INTEGRATION=chronotope/chrono
if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
allow_failures:
- os: windows
env: CARGO_INCREMENTAL=0 BASE_TESTS=true
2018-10-05 12:01:52 +02:00
# prevent these jobs with default env vars
exclude:
- os: linux
- os: osx
- os: windows
2018-05-16 09:10:35 +02:00
2015-04-13 20:51:16 +02:00
script:
- |
rm rust-toolchain
./setup-toolchain.sh
export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib
2018-05-16 09:10:35 +02:00
- |
if [ -z ${INTEGRATION} ]; then
travis_wait 30 ./ci/base-tests.sh && sleep 5
2018-05-16 09:10:35 +02:00
else
./ci/integration-tests.sh && sleep 5
2018-05-16 09:10:35 +02:00
fi
2017-01-08 17:35:49 +01:00
after_success: |
2017-01-09 16:45:33 +01:00
#!/bin/bash
2017-01-08 17:33:19 +01:00
if [ $(uname) == Linux ]; then
set -ex
if [ -z ${INTEGRATION} ]; then
./.github/deploy.sh
else
echo "Not deploying, because we're in an integration test run"
fi
2017-01-07 15:15:20 +01:00
set +e
2017-01-08 17:31:08 +01:00
fi