]> git.lizzy.rs Git - rust.git/blob - .travis.yml
Merge remote-tracking branch 'origin/master' into rustup
[rust.git] / .travis.yml
1 language: generic
2 cache:
3   # Cache the global cargo directory, but NOT the local `target` directory which
4   # we cannot reuse anyway when the nightly changes (and it grows quite large
5   # over time).
6   directories:
7     - /home/travis/.cargo
8
9 os:
10 - linux
11 - osx
12
13 before_script:
14 # mac os weirdness (https://github.com/travis-ci/travis-ci/issues/6307)
15 - rvm get stable
16 # Compute the rust version we use. We do not use "language: rust" to have more control here.
17 - |
18   if [ "$TRAVIS_EVENT_TYPE" = cron ]; then
19     RUST_TOOLCHAIN=nightly
20   else
21     RUST_TOOLCHAIN=$(cat rust-version)
22   fi
23 # install Rust
24 - curl https://build.travis-ci.org/files/rustup-init.sh -sSf | sh -s -- -y --default-toolchain "$RUST_TOOLCHAIN"
25 - export PATH=$HOME/.cargo/bin:$PATH
26 - rustc --version
27 # customize installation
28 - rustup target add i686-unknown-linux-gnu
29 - rustup target add i686-pc-windows-gnu
30 - rustup target add i686-pc-windows-msvc
31 - rustup component add rust-src
32 - cargo install xargo || echo "Skipping xargo install"
33
34 script:
35 - set -e
36 - |
37   # Test and install plain miri
38   cargo build --release --all-features &&
39   cargo test --release --all-features &&
40   cargo install --all-features --force --path .
41 - |
42   # get ourselves a MIR-full libstd
43   xargo/build.sh &&
44   export MIRI_SYSROOT=~/.xargo/HOST
45 - |
46   # run all tests with full mir
47   cargo test --release --all-features
48 - |
49   # test `cargo miri`
50   cd cargo-miri-test &&
51   if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
52     cargo miri -q
53   else
54     cargo miri -q >stdout.real 2>stderr.real &&
55     cat stdout.real stderr.real &&
56     # Test `cargo miri` output. Not on mac because output redirecting doesn't
57     # work. There is no error. It just stops CI.
58     diff -u stdout.ref stdout.real &&
59     diff -u stderr.ref stderr.real
60   fi &&
61   # test `cargo miri test`
62   cargo miri test &&
63   cd ..
64
65 notifications:
66   email:
67     on_success: never
68 branches:
69   only:
70   - master
71 env:
72   global:
73   - RUST_TEST_NOCAPTURE=1