2017-09-16 13:32:38 +02:00
|
|
|
environment:
|
|
|
|
global:
|
|
|
|
PROJECT_NAME: miri
|
|
|
|
matrix:
|
2019-04-04 16:49:16 +01:00
|
|
|
- TARGET: i686-pc-windows-msvc
|
2017-09-16 13:32:38 +02:00
|
|
|
|
2017-09-17 22:02:30 +02:00
|
|
|
# branches to build
|
|
|
|
branches:
|
|
|
|
# whitelist
|
|
|
|
only:
|
2019-06-21 20:55:24 +02:00
|
|
|
- auto
|
|
|
|
- try
|
2017-09-17 22:02:30 +02:00
|
|
|
|
2019-10-22 13:11:16 +02:00
|
|
|
matrix:
|
|
|
|
fast_finish: true # set this flag to immediately finish build once one of the jobs fails.
|
|
|
|
|
2019-04-04 10:38:49 +01:00
|
|
|
cache:
|
|
|
|
- '%USERPROFILE%\.cargo'
|
|
|
|
- '%USERPROFILE%\.rustup'
|
|
|
|
|
2017-09-16 13:32:38 +02:00
|
|
|
install:
|
2019-09-28 11:36:20 -04:00
|
|
|
# Compute the rust version we use
|
|
|
|
- set /p RUSTC_HASH=<rust-version
|
2019-04-04 10:38:49 +01:00
|
|
|
# Install Rust
|
2019-07-30 23:17:13 +02:00
|
|
|
- curl -sSf --retry 3 -o rustup-init.exe https://win.rustup.rs/
|
2019-10-16 10:02:31 +02:00
|
|
|
- rustup-init.exe -y --default-host %TARGET% --default-toolchain stable --profile minimal
|
2018-10-01 12:32:22 +02:00
|
|
|
- set PATH=%USERPROFILE%\.cargo\bin;%PATH%
|
2019-09-28 11:36:20 -04:00
|
|
|
- rustup default stable
|
2019-12-08 11:22:02 +01:00
|
|
|
- rustup toolchain uninstall beta
|
2019-09-28 11:36:20 -04:00
|
|
|
- rustup update
|
2019-04-04 10:38:49 +01:00
|
|
|
# Install "master" toolchain
|
2020-01-31 11:38:07 +01:00
|
|
|
- cargo install rustup-toolchain-install-master
|
2019-10-24 15:44:35 +02:00
|
|
|
# We need to install cargo here as well or else the DLL search path inside `cargo run`
|
|
|
|
# will be for the wrong toolchain. (On Unix, `./miri` takes care of this, but not here.)
|
|
|
|
- rustup-toolchain-install-master -f -n master %RUSTC_HASH% -c rust-src -c rustc-dev -c cargo
|
2019-04-04 10:38:49 +01:00
|
|
|
- rustup default master
|
2018-10-01 12:32:22 +02:00
|
|
|
- rustc --version
|
2019-09-28 11:36:20 -04:00
|
|
|
- cargo --version
|
2017-09-16 13:32:38 +02:00
|
|
|
|
2019-04-04 10:38:49 +01:00
|
|
|
build_script:
|
2019-04-18 16:44:43 +02:00
|
|
|
- set RUSTFLAGS=-C debug-assertions
|
2018-12-18 19:52:30 +01:00
|
|
|
# Build and install miri
|
2019-10-14 09:40:11 +02:00
|
|
|
- cargo build --release --all-features --all-targets --locked
|
2019-05-29 12:54:19 +02:00
|
|
|
- cargo install --all-features --force --path . --locked --offline
|
2019-04-04 10:38:49 +01:00
|
|
|
|
|
|
|
test_script:
|
2019-06-30 21:03:52 +02:00
|
|
|
- set RUST_TEST_NOCAPTURE=1
|
|
|
|
- set RUST_BACKTRACE=1
|
2020-04-02 09:49:48 +02:00
|
|
|
- set CARGO_INCREMENTAL=0
|
2020-03-22 20:08:00 +01:00
|
|
|
# Test host miri: 32bit Windows
|
|
|
|
- cargo miri setup
|
|
|
|
- set MIRI_SYSROOT=%USERPROFILE%\AppData\Local\rust-lang\miri\cache\HOST
|
|
|
|
- cargo test --release --all-features --locked
|
|
|
|
- cd test-cargo-miri
|
|
|
|
- '"C:\msys64\mingw64\bin\python3.exe" run-test.py'
|
|
|
|
- cd ..
|
2020-03-22 20:32:42 +01:00
|
|
|
- ps: $env:MIRI_SYSROOT = ""
|
2020-03-22 20:08:00 +01:00
|
|
|
# Test foreign miri: 64bit Linux
|
|
|
|
- cargo miri setup --target x86_64-unknown-linux-gnu
|
|
|
|
- set MIRI_SYSROOT=%USERPROFILE%\AppData\Local\rust-lang\miri\cache
|
|
|
|
- set MIRI_TEST_TARGET=x86_64-unknown-linux-gnu
|
|
|
|
- cargo test --release --all-features --locked
|
|
|
|
- cd test-cargo-miri
|
|
|
|
- '"C:\msys64\mingw64\bin\python3.exe" run-test.py'
|
|
|
|
- cd ..
|
2020-03-22 20:32:42 +01:00
|
|
|
- ps: $env:MIRI_SYSROOT = ""
|
2020-03-22 20:08:00 +01:00
|
|
|
# Test foreign miri: 64bit macOS
|
|
|
|
- cargo miri setup --target x86_64-apple-darwin
|
|
|
|
- set MIRI_SYSROOT=%USERPROFILE%\AppData\Local\rust-lang\miri\cache
|
|
|
|
- set MIRI_TEST_TARGET=x86_64-apple-darwin
|
2019-10-14 09:40:11 +02:00
|
|
|
- cargo test --release --all-features --locked
|
2018-12-18 19:52:30 +01:00
|
|
|
- cd test-cargo-miri
|
2019-04-04 16:49:16 +01:00
|
|
|
- '"C:\msys64\mingw64\bin\python3.exe" run-test.py'
|
2020-03-22 20:08:00 +01:00
|
|
|
- cd ..
|
2020-03-22 20:32:42 +01:00
|
|
|
- ps: $env:MIRI_SYSROOT = ""
|
2017-09-16 13:32:38 +02:00
|
|
|
|
2019-04-04 10:38:49 +01:00
|
|
|
after_test:
|
|
|
|
# Don't cache "master" toolchain, it's a waste
|
|
|
|
- rustup default stable
|
|
|
|
- rustup toolchain uninstall master
|
|
|
|
|
2017-09-16 13:32:38 +02:00
|
|
|
notifications:
|
|
|
|
- provider: Email
|
|
|
|
on_build_success: false
|