rust/.travis.yml
gnzlbg c79f39af16 Add integration tests against crates in the rust-lang-nursery
This commit adds integration tests against some crates in the
nursery.

Each integration test is added as a separate build-bot, where
the rust-lang-nursery/${CRATE} is first downloaded and its tests run.
Afterwards, `cargo fmt --all` is applied to the crate, and the tests
are re-run. If the tests fail after formatting, the integration test
fails.

The crates that currently fail are added as allowed-to-fail, but the
intent is that either these crates or rustfmt should be fixed such
that the tests pass.
2018-05-10 00:31:55 +02:00

93 lines
2.1 KiB
YAML

sudo: false
language: rust
rust: nightly
os: linux
cache:
directories:
- $HOME/.cargo
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
matrix:
include:
- env: DEPLOY=LINUX
- env: CFG_RELEASE_CHANNEL=beta
- os: osx
- env: INTEGRATION=cargo
- env: INTEGRATION=rust-clippy
- env: INTEGRATION=mdbook
- env: INTEGRATION=stdsimd
- env: INTEGRATION=rust-semverver
- env: INTEGRATION=chalk
- env: INTEGRATION=crater
- env: INTEGRATION=futures-rs
- env: INTEGRATION=rand
- env: INTEGRATION=failure
- env: INTEGRATION=glob
- env: INTEGRATION=error-chain
- env: INTEGRATION=tempdir
- env: INTEGRATION=bitflags
- env: INTEGRATION=log
allow_failures:
- env: INTEGRATION=cargo
- env: INTEGRATION=stdsimd
- env: INTEGRATION=mdbook
- env: INTEGRATION=crater
- env: INTEGRATION=rust-semverver
- env: INTEGRATION=rust-clippy
- env: INTEGRATION=chalk
- env: INTEGRATION=bitflags
- env: INTEGRATION=error-chain
- env: INTEGRATION=failure
- env: INTEGRATION=futures-rs
- env: INTEGRATION=log
- env: INTEGRATION=rand
before_script:
- |
if [ -z ${INTEGRATION} ]; then
if [ $TRAVIS_OS_NAME = 'osx' ]; then
virtualenv env &&
source env/bin/activate &&
python --version &&
pip install 'travis-cargo<0.2'
else
pip install 'travis-cargo<0.2' --user &&
export PATH="$(python -m site --user-base)/bin:$PATH"
fi
fi
script:
- |
if [ -z ${INTEGRATION} ]; then
cargo build
cargo test
else
./ci/integration.sh
fi
after_success:
- if [ -z ${INTEGRATION} ]; then travis-cargo coveralls --no-sudo; fi
before_deploy:
# TODO: cross build
- cargo build --release --target=x86_64-unknown-linux-gnu
- tar czf rustfmt-x86_64-unknown-linux-gnu.tar.gz Contributing.md Design.md README.md -C target/x86_64-unknown-linux-gnu/release/rustfmt rustfmt
deploy:
provider: releases
api_key:
secure: "your own encrypted key"
file:
- rustfmt-x86_64-unknown-linux-gnu.tar.gz
on:
repo: nrc/rustfmt
tags: true
condition: "$DEPLOY = LINUX"
skip_cleanup: true