rust/.travis.yml

75 lines
2 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
2018-05-18 07:38:30 +02:00
- env: INTEGRATION=chalk
- env: INTEGRATION=crater
- env: INTEGRATION=error-chain
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-18 07:38:30 +02:00
- env: INTEGRATION=rust-semverver
- env: INTEGRATION=stdsimd TARGET=x86_64-unknown-linux-gnu
2018-05-23 03:11:12 +02:00
- env: INTEGRATION=tempdir
- env: INTEGRATION=futures-rs
allow_failures:
2019-05-18 09:13:34 +02:00
# Using old configuration option
- env: INTEGRATION=rand
2019-03-24 11:00:19 +01:00
# Doesn't build - keep this in allow_failures as it's fragile to breaking changes of rustc.
- env: INTEGRATION=rust-clippy
# Doesn't build - seems to be because of an option
- env: INTEGRATION=packed_simd
# Doesn't build - a temporal build failure due to breaking changes in the nightly compilre
- env: INTEGRATION=rust-semverver
# can be moved back to include section after https://github.com/rust-lang-nursery/failure/pull/298 is merged
- env: INTEGRATION=failure
2019-04-23 17:05:15 +02:00
# `cargo test` doesn't finish - disabling for now.
# - env: INTEGRATION=cargo
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