rust/.travis.yml

38 lines
771 B
YAML
Raw Normal View History

2016-04-13 17:10:31 -05:00
language: rust
rust:
- nightly
before_script:
2017-03-23 09:52:11 -05:00
- export PATH=$HOME/.local/bin:$PATH
- rustup target add i686-unknown-linux-gnu
- rustup target add i686-pc-windows-gnu
- rustup target add i686-pc-windows-msvc
- rustup component add rust-src
- cargo install xargo
- export RUST_SYSROOT=$HOME/rust
2016-04-13 17:10:31 -05:00
script:
2017-06-21 01:55:32 -05:00
- |
# get ourselves a MIR-ful libstd
xargo/build.sh
2016-06-16 03:46:43 -05:00
- |
# Test plain miri
cd miri/ && cargo build &&
2017-03-23 09:52:11 -05:00
cargo test &&
2017-07-19 10:28:46 -05:00
cargo install &&
cd ..
- |
# Test cargo miri
cd cargo-miri-test &&
cargo miri &&
cargo miri test &&
cd ..
- |
2017-06-21 01:55:32 -05:00
# and run all tests with full mir
cd miri/ && MIRI_SYSROOT=~/.xargo/HOST cargo test && cd ..
2016-04-13 17:10:31 -05:00
notifications:
email:
on_success: never
2016-04-15 09:50:36 -05:00
env:
global:
- RUST_TEST_NOCAPTURE=1
- TRAVIS_CARGO_NIGHTLY_FEATURE=""