rust-clippy/.travis.yml

111 lines
3.1 KiB
YAML
Raw Normal View History

2015-04-13 18:51:16 +00:00
language: rust
2017-01-05 18:26:00 +00:00
2015-05-20 07:04:45 +00:00
rust: nightly
2017-01-05 18:26:00 +00:00
os:
- linux
2018-10-05 10:01:52 +00:00
- osx
- windows
2017-01-05 18:26:00 +00:00
2018-10-22 11:09:48 +00:00
branches:
# Don't build these branches
except:
# Used by bors
- trying.tmp
- staging.tmp
2018-10-22 11:09:48 +00:00
2016-03-29 13:15:58 +00:00
env:
global:
2017-08-01 13:19:12 +00:00
- RUST_BACKTRACE=1
2016-03-29 13:15:58 +00:00
2016-05-06 13:32:34 +00:00
install:
- |
2018-10-12 20:04:58 +00:00
if [ -z ${INTEGRATION} ]; then
2018-12-08 11:41:04 +00:00
rustup component add rustfmt || cargo install --git https://github.com/rust-lang/rustfmt/ --force
2018-10-12 20:04:58 +00: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 13:32:34 +00:00
2018-11-27 21:01:22 +00: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 07:10:35 +00:00
matrix:
fast_finish: true
2018-05-16 07:10:35 +00:00
include:
2018-10-05 10:01:52 +00: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
2018-05-16 07:10:35 +00:00
- env: INTEGRATION=rust-lang/cargo
2018-11-27 21:01:22 +00:00
if: repo =~ /^rust-lang\/rust-clippy$/
- env: INTEGRATION=rust-random/rand
2018-11-27 21:01:22 +00:00
if: repo =~ /^rust-lang\/rust-clippy$/
2018-05-17 19:40:04 +00:00
- env: INTEGRATION=rust-lang-nursery/stdsimd
2018-11-27 21:01:22 +00:00
if: repo =~ /^rust-lang\/rust-clippy$/
- env: INTEGRATION=rust-lang/rustfmt
2018-11-27 21:01:22 +00:00
if: repo =~ /^rust-lang\/rust-clippy$/
2018-05-17 19:40:04 +00:00
- env: INTEGRATION=rust-lang-nursery/futures-rs
2018-11-27 21:01:22 +00:00
if: repo =~ /^rust-lang\/rust-clippy$/
2018-05-17 19:40:04 +00:00
- env: INTEGRATION=rust-lang-nursery/failure
2018-11-27 21:01:22 +00:00
if: repo =~ /^rust-lang\/rust-clippy$/
2018-05-17 19:40:04 +00:00
- env: INTEGRATION=rust-lang-nursery/log
2018-11-27 21:01:22 +00:00
if: repo =~ /^rust-lang\/rust-clippy$/
2018-05-17 19:40:04 +00:00
- env: INTEGRATION=rust-lang-nursery/chalk
2018-11-27 21:01:22 +00:00
if: repo =~ /^rust-lang\/rust-clippy$/
- env: INTEGRATION=rust-lang/rls
2018-11-27 21:01:22 +00:00
if: repo =~ /^rust-lang\/rust-clippy$/
2018-05-17 19:40:04 +00:00
- env: INTEGRATION=chronotope/chrono
2018-11-27 21:01:22 +00:00
if: repo =~ /^rust-lang\/rust-clippy$/
2018-05-17 19:40:04 +00:00
- env: INTEGRATION=serde-rs/serde
2018-11-27 21:01:22 +00:00
if: repo =~ /^rust-lang\/rust-clippy$/
2018-05-17 19:40:04 +00:00
- env: INTEGRATION=Geal/nom
2018-11-27 21:01:22 +00:00
if: repo =~ /^rust-lang\/rust-clippy$/
- env: INTEGRATION=hyperium/hyper
2018-11-27 21:01:22 +00:00
if: repo =~ /^rust-lang\/rust-clippy$/
2019-01-04 17:01:44 +00:00
- env: INTEGRATION=bluss/rust-itertools
if: repo =~ /^rust-lang\/rust-clippy$/
allow_failures:
- os: windows
env: CARGO_INCREMENTAL=0 BASE_TESTS=true
2018-10-05 10:01:52 +00:00
# prevent these jobs with default env vars
exclude:
- os: linux
- os: osx
- os: windows
2018-05-16 07:10:35 +00:00
2015-04-13 18:51:16 +00:00
script:
- |
rm rust-toolchain
cargo install rustup-toolchain-install-master --debug || echo "rustup-toolchain-install-master already installed"
RUSTC_HASH=$(git ls-remote https://github.com/rust-lang/rust.git master | awk '{print $1}')
travis_retry rustup-toolchain-install-master -f -n master $RUSTC_HASH
rustup default master
export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib
2018-05-16 07:10:35 +00:00
- |
if [ -z ${INTEGRATION} ]; then
./ci/base-tests.sh && sleep 5
2018-05-16 07:10:35 +00:00
else
./ci/integration-tests.sh && sleep 5
2018-05-16 07:10:35 +00:00
fi
2017-01-08 16:35:49 +00:00
after_success: |
2017-01-09 15:45:33 +00:00
#!/bin/bash
2017-01-08 16:33:19 +00: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 14:15:20 +00:00
set +e
2017-01-08 16:31:08 +00:00
fi