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
|
2017-05-30 16:09:40 -05:00
|
|
|
- rustup component add rust-src
|
2017-09-06 03:15:28 -05:00
|
|
|
- cargo install --git https://github.com/japaric/xargo.git
|
2017-05-30 16:09:40 -05:00
|
|
|
- export RUST_SYSROOT=$HOME/rust
|
2016-04-13 17:10:31 -05:00
|
|
|
script:
|
2017-08-18 04:42:00 -05:00
|
|
|
- set -e
|
2017-06-21 01:55:32 -05:00
|
|
|
- |
|
|
|
|
# get ourselves a MIR-ful libstd
|
2017-07-11 12:25:05 -05:00
|
|
|
xargo/build.sh
|
2016-06-16 03:46:43 -05:00
|
|
|
- |
|
2017-05-30 16:09:40 -05:00
|
|
|
# Test plain miri
|
2017-09-14 03:04:28 -05:00
|
|
|
cargo build --locked --release --all-features &&
|
|
|
|
cargo test --locked --release --all-features --all &&
|
2017-09-14 03:34:07 -05:00
|
|
|
cargo install --locked --all-features
|
2017-05-30 16:09:40 -05:00
|
|
|
- |
|
|
|
|
# Test cargo miri
|
2017-01-24 10:55:42 -06:00
|
|
|
cd cargo-miri-test &&
|
2017-01-28 09:14:32 -06:00
|
|
|
cargo miri &&
|
|
|
|
cargo miri test &&
|
2017-01-24 10:55:42 -06:00
|
|
|
cd ..
|
2017-05-30 16:09:40 -05:00
|
|
|
- |
|
2017-06-21 01:55:32 -05:00
|
|
|
# and run all tests with full mir
|
2017-09-14 03:04:28 -05:00
|
|
|
MIRI_SYSROOT=~/.xargo/HOST cargo test --locked --release
|
2017-08-01 09:44:49 -05:00
|
|
|
- |
|
|
|
|
# test that the rustc_tests binary compiles
|
|
|
|
cd rustc_tests &&
|
2017-09-04 05:42:01 -05:00
|
|
|
cargo build --locked --release &&
|
2017-08-01 09:44:49 -05:00
|
|
|
cd ..
|
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
|
|
|
|
- TRAVIS_CARGO_NIGHTLY_FEATURE=""
|