rust/.travis.yml

42 lines
1002 B
YAML
Raw Normal View History

language: generic
cache:
# Cache the global cargo directory, but NOT the local `target` directory which
# we cannot reuse anyway when the nightly changes (and it grows quite large
# over time).
directories:
- /home/travis/.cargo
2017-07-19 08:06:21 -05:00
os:
- linux
- osx
2018-12-10 03:19:44 -06:00
dist: xenial
2017-07-19 08:06:21 -05:00
2016-04-13 17:10:31 -05:00
before_script:
# Linux: install extra stuff for cross-compilation
2018-12-10 03:19:44 -06:00
- if [[ "$TRAVIS_OS_NAME" == linux ]]; then sudo apt update && sudo apt install gcc-multilib; fi
# Compute the rust version we use. We do not use "language: rust" to have more control here.
- |
2018-12-10 03:19:44 -06:00
if [[ "$TRAVIS_EVENT_TYPE" == cron ]]; then
RUST_TOOLCHAIN=nightly
else
RUST_TOOLCHAIN=$(cat rust-version)
fi
# install Rust
- curl https://build.travis-ci.org/files/rustup-init.sh -sSf | sh -s -- -y --default-toolchain "$RUST_TOOLCHAIN"
- export PATH=$HOME/.cargo/bin:$PATH
- rustc --version
2016-04-13 17:10:31 -05:00
script:
- ./travis.sh
2016-04-13 17:10:31 -05:00
notifications:
email:
on_success: never
2017-09-09 04:28:24 -05:00
branches:
only:
- master
2016-04-15 09:50:36 -05:00
env:
global:
- RUST_TEST_NOCAPTURE=1
- RUST_BACKTRACE=1