]> git.lizzy.rs Git - rust.git/blob - .travis.yml
Merge branch 'miri-backtrace' into mut-visitor
[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 # macOS weirdness (https://github.com/travis-ci/travis-ci/issues/6307)
15 - if [[ "$TRAVIS_OS_NAME" == osx ]]; then rvm get stable; fi
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 --all-targets &&
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 integration
50   (cd cargo-miri-test && ./run-test.py)
51
52 notifications:
53   email:
54     on_success: never
55 branches:
56   only:
57   - master
58 env:
59   global:
60   - RUST_TEST_NOCAPTURE=1