]> git.lizzy.rs Git - rust.git/blob - .travis.yml
Removed unused crate imports
[rust.git] / .travis.yml
1 language: rust
2 rust:
3 - nightly
4 before_script:
5 - export PATH=$HOME/.local/bin:$PATH
6 - rustup target add i686-unknown-linux-gnu
7 - rustup target add i686-pc-windows-gnu
8 - rustup target add i686-pc-windows-msvc
9 script:
10 - |
11   export RUST_SYSROOT=$HOME/rust &&
12   cargo build &&
13   cargo test &&
14   cargo install &&
15   cd cargo-miri-test &&
16   cargo miri &&
17   cargo miri test &&
18   cd ..
19 notifications:
20   email:
21     on_success: never
22 env:
23   global:
24   - RUST_TEST_NOCAPTURE=1
25   - TRAVIS_CARGO_NIGHTLY_FEATURE=""