rust/.travis.yml

77 lines
1.7 KiB
YAML
Raw Normal View History

sudo: false
2015-04-30 10:16:18 +02:00
language: rust
rust: nightly
os: linux
2015-11-11 18:41:12 +01:00
cache:
directories:
- $HOME/.cargo
2015-04-30 10:16:18 +02:00
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
matrix:
include:
- env: DEPLOY=LINUX
- env: CFG_RELEASE_CHANNEL=beta
- os: osx
2018-05-23 03:11:12 +02:00
- env: INTEGRATION=bitflags
- env: INTEGRATION=cargo
2018-05-18 07:38:30 +02:00
- env: INTEGRATION=chalk
- env: INTEGRATION=crater
- env: INTEGRATION=error-chain
2018-05-23 03:11:12 +02:00
- env: INTEGRATION=failure
- env: INTEGRATION=futures-rs
2018-05-18 07:38:30 +02:00
- env: INTEGRATION=glob
2018-05-23 03:11:12 +02:00
- env: INTEGRATION=log
- env: INTEGRATION=mdbook
- env: INTEGRATION=packed_simd
2018-05-23 03:11:12 +02:00
- env: INTEGRATION=rand
- env: INTEGRATION=rust-clippy
2018-05-18 07:38:30 +02:00
- env: INTEGRATION=rust-semverver
2018-07-18 03:02:23 +02:00
- env: INTEGRATION=stdsimd
2018-05-23 03:11:12 +02:00
- env: INTEGRATION=tempdir
allow_failures:
2018-07-18 03:02:23 +02:00
# Needs `edition = "Edition2018"` in rustfmt.toml
2018-05-23 03:11:12 +02:00
- env: INTEGRATION=chalk
2018-07-18 03:02:23 +02:00
# Fails tests, don't know why
- env: INTEGRATION=crater
2018-07-20 12:19:08 +02:00
# Doesn't build
- env: INTEGRATION=futures-rs
2018-07-23 00:04:07 +02:00
# Test failure
2018-05-23 03:11:12 +02:00
- env: INTEGRATION=rust-clippy
2018-07-23 00:04:07 +02:00
# Build failure
- env: INTEGRATION=rust-semverver
2015-04-30 10:16:18 +02:00
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