]> git.lizzy.rs Git - rust.git/blobdiff - .travis.yml
Enable backtraces for tests
[rust.git] / .travis.yml
index 7cc14234efd580eab7183f1ab46ee0ae95787375..9aa632da05e0e976756cab9c1d054ad4a79c67f4 100644 (file)
@@ -1,37 +1,54 @@
 language: rust
+cache: cargo
+
+os:
+- osx
+- linux
+
 rust:
 - nightly
 before_script:
+# mac os weirdness (https://github.com/travis-ci/travis-ci/issues/6307)
+- curl -sSL https://rvm.io/mpapis.asc | gpg --import -
+- rvm get stable
+# actual travis code
 - 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
-- chmod +x -R ~/.rustup/toolchains/*/lib/rustlib/src/rust/src/jemalloc/include/jemalloc/
-- cargo install xargo
+- cargo install xargo || echo "skipping xargo install"
 - export RUST_SYSROOT=$HOME/rust
 script:
+- set -e
+- |
+  # get ourselves a MIR-ful libstd
+  xargo/build.sh
 - |
   # Test plain miri
-  cargo build &&
-  cargo test &&
-  cargo install
+  cargo build --release --all-features &&
+  RUST_BACKTRACE=1 cargo test --release --all-features --all &&
+  cargo install --all-features --force
 - |
   # Test cargo miri
   cd cargo-miri-test &&
   cargo miri &&
-  cargo miri test &&
+  #cargo miri test &&
   cd ..
 - |
-  # get ourselves a MIR-ful libstd
-  cd xargo &&
-  RUSTFLAGS='-Zalways-encode-mir' xargo build &&
-  cd .. &&
-  # and run the tests with it
-  MIRI_SYSROOT=~/.xargo/HOST cargo test
+  # and run all tests with full mir
+  MIRI_SYSROOT=~/.xargo/HOST cargo test --release
+- |
+  # test that the rustc_tests binary compiles
+  cd rustc_tests &&
+  cargo build --release &&
+  cd ..
 notifications:
   email:
     on_success: never
+branches:
+  only:
+  - master
 env:
   global:
   - RUST_TEST_NOCAPTURE=1