rust/.travis.yml

89 lines
2.6 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-01-19 09:16:33 +01:00
# - osx # doesn't even start atm. Not sure what travis is up to. Disabling to reduce the noise
2017-01-05 19:26:00 +01:00
2015-04-13 20:51:16 +02:00
sudo: false
2016-08-08 17:53:07 +02:00
2016-03-29 15:15:58 +02:00
env:
global:
# TRAVIS_TOKEN_CLIPPY_SERVICE
2017-08-01 15:19:12 +02:00
- secure: dj8SwwuRGuzbo2wZq5z7qXIf7P3p7cbSGs1I3pvXQmB6a58gkLiRn/qBcIIegdt/nzXs+Z0Nug+DdesYVeUPxk1hIa/eeU8p6mpyTtZ+30H4QVgVzd0VCthB5F/NUiPVxTgpGpEgCM9/p72xMwTn7AAJfsGqk7AJ4FS5ZZKhqFI=
- RUST_BACKTRACE=1
2016-03-29 15:15:58 +02:00
before_install:
2018-01-04 20:17:04 +01:00
- |
2018-01-06 07:31:39 +01:00
# work-around for issue https://github.com/travis-ci/travis-ci/issues/6307
# might not be necessary in the future
2018-01-06 07:14:52 +01:00
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
command curl -sSL https://rvm.io/mpapis.asc | gpg --import -
2018-01-04 20:17:04 +01:00
rvm get stable
fi
2016-05-06 15:32:34 +02:00
install:
- |
if [ -z ${INTEGRATION} ]; then
. $HOME/.nvm/nvm.sh
nvm install stable
nvm use stable
npm install remark-cli remark-lint
fi
2016-05-06 15:32:34 +02:00
2018-05-16 09:10:35 +02:00
matrix:
include:
- env: BASE_TESTS=true # runs the base tests
2018-05-16 09:10:35 +02:00
- env: INTEGRATION=rust-lang/cargo
- env: INTEGRATION=rust-lang-nursery/rand
2018-05-17 21:40:04 +02: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 17:02:08 +02:00
- env: INTEGRATION=rust-lang-nursery/rls
2018-05-17 21:40:04 +02:00
- env: INTEGRATION=chronotope/chrono
- env: INTEGRATION=serde-rs/serde
- env: INTEGRATION=Geal/nom
- env: INTEGRATION=hyperium/hyper
2018-05-16 09:10:35 +02:00
allow_failures:
- env: INTEGRATION=rust-lang/cargo
2018-05-19 17:02:08 +02:00
- env: INTEGRATION=rust-lang-nursery/rls
2018-05-16 09:10:35 +02:00
2015-04-13 20:51:16 +02:00
script:
2018-05-16 09:10:35 +02:00
- |
if [ -z ${INTEGRATION} ]; then
./ci/base-tests.sh
else
./ci/integration-tests.sh
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
# trigger rebuild of the clippy-service, to keep it up to date with clippy itself
if [ "$TRAVIS_PULL_REQUEST" == "false" ] &&
[ "$TRAVIS_REPO_SLUG" == "Manishearth/rust-clippy" ] &&
[ "$TRAVIS_BRANCH" == "master" ] &&
[ "$TRAVIS_TOKEN_CLIPPY_SERVICE" != "" ] ; then
curl -s -X POST \
2017-01-08 17:35:49 +01:00
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Travis-API-Version: 3" \
-H "Authorization: token $TRAVIS_TOKEN_CLIPPY_SERVICE" \
-d "{ \"request\": { \"branch\":\"master\" }}" \
https://api.travis-ci.org/repo/gnunicorn%2Fclippy-service/requests
else
echo "Ignored"
fi
2017-01-07 15:15:20 +01:00
set +e
2017-01-08 17:31:08 +01:00
fi