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
|
2017-01-05 18:26:00 +00:00
|
|
|
|
2015-04-13 18:51:16 +00:00
|
|
|
sudo: false
|
2016-08-08 15:53:07 +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
|
|
|
|
2018-01-04 18:39:17 +00:00
|
|
|
before_install:
|
2018-01-04 19:17:04 +00:00
|
|
|
- |
|
2018-01-06 06:31:39 +00:00
|
|
|
# work-around for issue https://github.com/travis-ci/travis-ci/issues/6307
|
|
|
|
# might not be necessary in the future
|
2018-01-06 06:14:52 +00:00
|
|
|
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
|
|
|
|
command curl -sSL https://rvm.io/mpapis.asc | gpg --import -
|
2018-01-04 19:17:04 +00:00
|
|
|
rvm get stable
|
|
|
|
fi
|
2018-01-04 18:39:17 +00:00
|
|
|
|
2016-05-06 13:32:34 +00:00
|
|
|
install:
|
2018-05-29 01:27:53 +00:00
|
|
|
- |
|
|
|
|
if [ -z ${INTEGRATION} ]; then
|
|
|
|
. $HOME/.nvm/nvm.sh
|
|
|
|
nvm install stable
|
|
|
|
nvm use stable
|
|
|
|
npm install remark-cli remark-lint
|
|
|
|
fi
|
2016-05-06 13:32:34 +00:00
|
|
|
|
2018-05-16 07:10:35 +00:00
|
|
|
matrix:
|
|
|
|
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
|
2018-05-16 07:10:35 +00:00
|
|
|
- env: INTEGRATION=rust-lang/cargo
|
|
|
|
- env: INTEGRATION=rust-lang-nursery/rand
|
2018-05-17 19:40:04 +00:00
|
|
|
- env: INTEGRATION=rust-lang-nursery/stdsimd
|
|
|
|
- env: INTEGRATION=rust-lang-nursery/rustfmt
|
|
|
|
- env: INTEGRATION=rust-lang-nursery/futures-rs
|
|
|
|
- env: INTEGRATION=rust-lang-nursery/failure
|
|
|
|
- env: INTEGRATION=rust-lang-nursery/log
|
|
|
|
- env: INTEGRATION=rust-lang-nursery/chalk
|
2018-05-19 15:02:08 +00:00
|
|
|
- env: INTEGRATION=rust-lang-nursery/rls
|
2018-05-17 19:40:04 +00:00
|
|
|
- env: INTEGRATION=chronotope/chrono
|
|
|
|
- env: INTEGRATION=serde-rs/serde
|
|
|
|
- env: INTEGRATION=Geal/nom
|
2018-05-18 16:43:21 +00:00
|
|
|
- env: INTEGRATION=hyperium/hyper
|
2018-10-05 10:01:52 +00:00
|
|
|
# prevent these jobs with default env vars
|
|
|
|
exclude:
|
|
|
|
- os: linux
|
|
|
|
- os: osx
|
2018-05-16 07:10:35 +00:00
|
|
|
|
2015-04-13 18:51:16 +00:00
|
|
|
script:
|
2018-08-22 16:08:52 +00:00
|
|
|
- |
|
|
|
|
rm rust-toolchain
|
|
|
|
cargo install rustup-toolchain-install-master || echo "rustup-toolchain-install-master already installed"
|
2018-09-03 03:42:06 +00: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
|
2018-08-22 16:08:52 +00:00
|
|
|
rustup default master
|
|
|
|
export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib
|
2018-05-16 07:10:35 +00:00
|
|
|
- |
|
|
|
|
if [ -z ${INTEGRATION} ]; then
|
2018-10-04 14:58:51 +00:00
|
|
|
./ci/base-tests.sh && sleep 5
|
2018-05-16 07:10:35 +00:00
|
|
|
else
|
2018-10-04 14:58:51 +00:00
|
|
|
./ci/integration-tests.sh && sleep 5
|
2018-05-16 07:10:35 +00:00
|
|
|
fi
|
2016-03-07 18:08:46 +00:00
|
|
|
|
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
|
2018-05-16 16:55:21 +00:00
|
|
|
set -ex
|
2018-05-25 06:11:15 +00:00
|
|
|
if [ -z ${INTEGRATION} ]; then
|
|
|
|
./.github/deploy.sh
|
2018-05-25 06:35:04 +00:00
|
|
|
else
|
|
|
|
echo "Not deploying, because we're in an integration test run"
|
2018-05-25 06:11:15 +00:00
|
|
|
fi
|
2017-01-07 14:15:20 +00:00
|
|
|
set +e
|
2017-01-08 16:31:08 +00:00
|
|
|
fi
|