2015-04-13 13:51:16 -05:00
|
|
|
language: rust
|
2017-01-05 12:26:00 -06:00
|
|
|
|
2015-05-20 02:04:45 -05:00
|
|
|
rust: nightly
|
2017-01-05 12:26:00 -06:00
|
|
|
|
|
|
|
os:
|
|
|
|
- linux
|
2018-10-05 05:01:52 -05:00
|
|
|
- osx
|
2018-10-12 00:19:34 -05:00
|
|
|
- windows
|
2017-01-05 12:26:00 -06:00
|
|
|
|
2018-10-22 06:09:48 -05:00
|
|
|
branches:
|
2018-10-25 13:14:39 -05:00
|
|
|
# Don't build these branches
|
|
|
|
except:
|
|
|
|
# Used by bors
|
|
|
|
- trying.tmp
|
|
|
|
- staging.tmp
|
2018-10-22 06:09:48 -05:00
|
|
|
|
2016-03-29 08:15:58 -05:00
|
|
|
env:
|
|
|
|
global:
|
2017-08-01 08:19:12 -05:00
|
|
|
- RUST_BACKTRACE=1
|
2016-03-29 08:15:58 -05:00
|
|
|
|
2018-01-04 12:39:17 -06:00
|
|
|
before_install:
|
2018-01-04 13:17:04 -06:00
|
|
|
- |
|
2018-01-06 00:31:39 -06:00
|
|
|
# work-around for issue https://github.com/travis-ci/travis-ci/issues/6307
|
|
|
|
# might not be necessary in the future
|
2018-01-06 00:14:52 -06:00
|
|
|
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
|
|
|
|
command curl -sSL https://rvm.io/mpapis.asc | gpg --import -
|
2018-01-04 13:17:04 -06:00
|
|
|
rvm get stable
|
|
|
|
fi
|
2018-01-04 12:39:17 -06:00
|
|
|
|
2016-05-06 08:32:34 -05:00
|
|
|
install:
|
2018-05-28 20:27:53 -05:00
|
|
|
- |
|
2018-10-12 15:04:58 -05:00
|
|
|
if [ -z ${INTEGRATION} ]; then
|
2018-12-08 05:41:04 -06:00
|
|
|
rustup component add rustfmt || cargo install --git https://github.com/rust-lang/rustfmt/ --force
|
2018-10-12 15:04:58 -05: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
|
2018-05-28 20:27:53 -05:00
|
|
|
fi
|
2016-05-06 08:32:34 -05:00
|
|
|
|
2018-11-27 15:01:22 -06: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 02:10:35 -05:00
|
|
|
matrix:
|
2018-12-09 08:42:52 -06:00
|
|
|
fast_finish: true
|
2018-05-16 02:10:35 -05:00
|
|
|
include:
|
2018-10-05 05:01:52 -05:00
|
|
|
- os: osx # run base tests on both platforms
|
|
|
|
env: BASE_TESTS=true
|
|
|
|
- os: linux
|
|
|
|
env: BASE_TESTS=true
|
2018-10-12 00:19:34 -05:00
|
|
|
- os: windows
|
2018-12-02 08:08:11 -06:00
|
|
|
env: CARGO_INCREMENTAL=0 BASE_TESTS=true
|
2018-05-16 02:10:35 -05:00
|
|
|
- env: INTEGRATION=rust-lang/cargo
|
2018-11-27 15:01:22 -06:00
|
|
|
if: repo =~ /^rust-lang\/rust-clippy$/
|
2018-11-21 21:40:09 -06:00
|
|
|
- env: INTEGRATION=rust-random/rand
|
2018-11-27 15:01:22 -06:00
|
|
|
if: repo =~ /^rust-lang\/rust-clippy$/
|
2018-05-17 14:40:04 -05:00
|
|
|
- env: INTEGRATION=rust-lang-nursery/stdsimd
|
2018-11-27 15:01:22 -06:00
|
|
|
if: repo =~ /^rust-lang\/rust-clippy$/
|
2018-11-21 21:40:09 -06:00
|
|
|
- env: INTEGRATION=rust-lang/rustfmt
|
2018-11-27 15:01:22 -06:00
|
|
|
if: repo =~ /^rust-lang\/rust-clippy$/
|
2018-05-17 14:40:04 -05:00
|
|
|
- env: INTEGRATION=rust-lang-nursery/futures-rs
|
2018-11-27 15:01:22 -06:00
|
|
|
if: repo =~ /^rust-lang\/rust-clippy$/
|
2018-05-17 14:40:04 -05:00
|
|
|
- env: INTEGRATION=rust-lang-nursery/failure
|
2018-11-27 15:01:22 -06:00
|
|
|
if: repo =~ /^rust-lang\/rust-clippy$/
|
2018-05-17 14:40:04 -05:00
|
|
|
- env: INTEGRATION=rust-lang-nursery/log
|
2018-11-27 15:01:22 -06:00
|
|
|
if: repo =~ /^rust-lang\/rust-clippy$/
|
2018-05-17 14:40:04 -05:00
|
|
|
- env: INTEGRATION=rust-lang-nursery/chalk
|
2018-11-27 15:01:22 -06:00
|
|
|
if: repo =~ /^rust-lang\/rust-clippy$/
|
2018-11-21 21:40:09 -06:00
|
|
|
- env: INTEGRATION=rust-lang/rls
|
2018-11-27 15:01:22 -06:00
|
|
|
if: repo =~ /^rust-lang\/rust-clippy$/
|
2018-05-17 14:40:04 -05:00
|
|
|
- env: INTEGRATION=chronotope/chrono
|
2018-11-27 15:01:22 -06:00
|
|
|
if: repo =~ /^rust-lang\/rust-clippy$/
|
2018-05-17 14:40:04 -05:00
|
|
|
- env: INTEGRATION=serde-rs/serde
|
2018-11-27 15:01:22 -06:00
|
|
|
if: repo =~ /^rust-lang\/rust-clippy$/
|
2018-05-17 14:40:04 -05:00
|
|
|
- env: INTEGRATION=Geal/nom
|
2018-11-27 15:01:22 -06:00
|
|
|
if: repo =~ /^rust-lang\/rust-clippy$/
|
2018-10-30 09:58:35 -05:00
|
|
|
- env: INTEGRATION=hyperium/hyper
|
2018-11-27 15:01:22 -06:00
|
|
|
if: repo =~ /^rust-lang\/rust-clippy$/
|
2018-10-12 00:41:25 -05:00
|
|
|
allow_failures:
|
|
|
|
- os: windows
|
2018-12-02 08:08:11 -06:00
|
|
|
env: CARGO_INCREMENTAL=0 BASE_TESTS=true
|
2018-10-05 05:01:52 -05:00
|
|
|
# prevent these jobs with default env vars
|
|
|
|
exclude:
|
|
|
|
- os: linux
|
|
|
|
- os: osx
|
2018-10-12 00:19:34 -05:00
|
|
|
- os: windows
|
2018-05-16 02:10:35 -05:00
|
|
|
|
2015-04-13 13:51:16 -05:00
|
|
|
script:
|
2018-10-30 09:41:59 -05:00
|
|
|
- |
|
|
|
|
rm rust-toolchain
|
2018-10-31 05:18:20 -05:00
|
|
|
cargo install rustup-toolchain-install-master --debug || echo "rustup-toolchain-install-master already installed"
|
2018-10-30 09:41:59 -05:00
|
|
|
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 02:10:35 -05:00
|
|
|
- |
|
|
|
|
if [ -z ${INTEGRATION} ]; then
|
2018-10-04 09:58:51 -05:00
|
|
|
./ci/base-tests.sh && sleep 5
|
2018-05-16 02:10:35 -05:00
|
|
|
else
|
2018-10-04 09:58:51 -05:00
|
|
|
./ci/integration-tests.sh && sleep 5
|
2018-05-16 02:10:35 -05:00
|
|
|
fi
|
2016-03-07 12:08:46 -06:00
|
|
|
|
2017-01-08 10:35:49 -06:00
|
|
|
after_success: |
|
2017-01-09 09:45:33 -06:00
|
|
|
#!/bin/bash
|
2017-01-08 10:33:19 -06:00
|
|
|
if [ $(uname) == Linux ]; then
|
2018-05-16 11:55:21 -05:00
|
|
|
set -ex
|
2018-05-25 01:11:15 -05:00
|
|
|
if [ -z ${INTEGRATION} ]; then
|
|
|
|
./.github/deploy.sh
|
2018-05-25 01:35:04 -05:00
|
|
|
else
|
|
|
|
echo "Not deploying, because we're in an integration test run"
|
2018-05-25 01:11:15 -05:00
|
|
|
fi
|
2017-01-07 08:15:20 -06:00
|
|
|
set +e
|
2017-01-08 10:31:08 -06:00
|
|
|
fi
|