2017-09-16 13:32:38 +02:00
|
|
|
environment:
|
|
|
|
global:
|
|
|
|
PROJECT_NAME: miri
|
|
|
|
matrix:
|
|
|
|
- TARGET: x86_64-pc-windows-msvc
|
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
|
|
|
|
- rustup uninstall beta
|
2019-10-16 10:41:50 +02:00
|
|
|
- rustup component remove rust-docs & exit 0
|
2019-09-28 11:36:20 -04:00
|
|
|
- rustup update
|
2019-04-04 10:38:49 +01:00
|
|
|
# Install "master" toolchain
|
2019-10-12 17:11:29 +02:00
|
|
|
- cargo install rustup-toolchain-install-master -f
|
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
|
2018-11-27 11:46:09 +01:00
|
|
|
# Get ourselves a MIR-full libstd, and use it henceforth
|
2018-12-18 19:52:30 +01:00
|
|
|
- cargo miri setup
|
2019-06-20 19:45:39 +02:00
|
|
|
- set MIRI_SYSROOT=%USERPROFILE%\AppData\Local\rust-lang\miri\cache\HOST
|
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
|
2018-12-10 10:19:44 +01:00
|
|
|
# Test miri
|
2019-10-14 09:40:11 +02:00
|
|
|
- cargo test --release --all-features --locked
|
2018-12-18 19:52:30 +01:00
|
|
|
# Test cargo integration
|
|
|
|
- cd test-cargo-miri
|
2019-04-04 16:49:16 +01:00
|
|
|
- '"C:\msys64\mingw64\bin\python3.exe" run-test.py'
|
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
|