2017-09-16 06:32:38 -05:00
|
|
|
environment:
|
|
|
|
global:
|
|
|
|
PROJECT_NAME: miri
|
|
|
|
matrix:
|
2019-04-04 10:49:16 -05:00
|
|
|
- TARGET: i686-pc-windows-msvc
|
2017-09-16 06:32:38 -05:00
|
|
|
|
2017-09-17 15:02:30 -05:00
|
|
|
# branches to build
|
|
|
|
branches:
|
|
|
|
# whitelist
|
|
|
|
only:
|
2019-06-21 13:55:24 -05:00
|
|
|
- auto
|
|
|
|
- try
|
2017-09-17 15:02:30 -05:00
|
|
|
|
2019-10-22 06:11:16 -05:00
|
|
|
matrix:
|
|
|
|
fast_finish: true # set this flag to immediately finish build once one of the jobs fails.
|
|
|
|
|
2019-04-04 04:38:49 -05:00
|
|
|
cache:
|
|
|
|
- '%USERPROFILE%\.cargo'
|
|
|
|
- '%USERPROFILE%\.rustup'
|
|
|
|
|
2017-09-16 06:32:38 -05:00
|
|
|
install:
|
2019-09-28 10:36:20 -05:00
|
|
|
# Compute the rust version we use
|
|
|
|
- set /p RUSTC_HASH=<rust-version
|
2019-04-04 04:38:49 -05:00
|
|
|
# Install Rust
|
2019-07-30 16:17:13 -05:00
|
|
|
- curl -sSf --retry 3 -o rustup-init.exe https://win.rustup.rs/
|
2019-10-16 03:02:31 -05:00
|
|
|
- rustup-init.exe -y --default-host %TARGET% --default-toolchain stable --profile minimal
|
2018-10-01 05:32:22 -05:00
|
|
|
- set PATH=%USERPROFILE%\.cargo\bin;%PATH%
|
2019-09-28 10:36:20 -05:00
|
|
|
- rustup default stable
|
2019-12-08 04:22:02 -06:00
|
|
|
- rustup toolchain uninstall beta
|
2019-09-28 10:36:20 -05:00
|
|
|
- rustup update
|
2019-04-04 04:38:49 -05:00
|
|
|
# Install "master" toolchain
|
2020-01-31 04:38:07 -06:00
|
|
|
- cargo install rustup-toolchain-install-master
|
2019-10-24 08:44:35 -05: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 04:38:49 -05:00
|
|
|
- rustup default master
|
2018-10-01 05:32:22 -05:00
|
|
|
- rustc --version
|
2019-09-28 10:36:20 -05:00
|
|
|
- cargo --version
|
2017-09-16 06:32:38 -05:00
|
|
|
|
2019-04-04 04:38:49 -05:00
|
|
|
build_script:
|
2019-04-18 09:44:43 -05:00
|
|
|
- set RUSTFLAGS=-C debug-assertions
|
2018-12-18 12:52:30 -06:00
|
|
|
# Build and install miri
|
2019-10-14 02:40:11 -05:00
|
|
|
- cargo build --release --all-features --all-targets --locked
|
2019-05-29 05:54:19 -05:00
|
|
|
- cargo install --all-features --force --path . --locked --offline
|
2019-04-04 04:38:49 -05:00
|
|
|
|
|
|
|
test_script:
|
2019-06-30 14:03:52 -05:00
|
|
|
- set RUST_TEST_NOCAPTURE=1
|
|
|
|
- set RUST_BACKTRACE=1
|
2020-04-02 02:49:48 -05:00
|
|
|
- set CARGO_INCREMENTAL=0
|
2020-03-22 14:08:00 -05: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 14:32:42 -05:00
|
|
|
- ps: $env:MIRI_SYSROOT = ""
|
2020-03-22 14:08:00 -05: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 14:32:42 -05:00
|
|
|
- ps: $env:MIRI_SYSROOT = ""
|
2020-03-22 14:08:00 -05: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 02:40:11 -05:00
|
|
|
- cargo test --release --all-features --locked
|
2018-12-18 12:52:30 -06:00
|
|
|
- cd test-cargo-miri
|
2019-04-04 10:49:16 -05:00
|
|
|
- '"C:\msys64\mingw64\bin\python3.exe" run-test.py'
|
2020-03-22 14:08:00 -05:00
|
|
|
- cd ..
|
2020-03-22 14:32:42 -05:00
|
|
|
- ps: $env:MIRI_SYSROOT = ""
|
2017-09-16 06:32:38 -05:00
|
|
|
|
2019-04-04 04:38:49 -05:00
|
|
|
after_test:
|
|
|
|
# Don't cache "master" toolchain, it's a waste
|
|
|
|
- rustup default stable
|
|
|
|
- rustup toolchain uninstall master
|
|
|
|
|
2017-09-16 06:32:38 -05:00
|
|
|
notifications:
|
|
|
|
- provider: Email
|
|
|
|
on_build_success: false
|