rust/.appveyor.yml

67 lines
2.0 KiB
YAML
Raw Normal View History

2017-09-16 06:32:38 -05:00
environment:
global:
PROJECT_NAME: miri
matrix:
- TARGET: x86_64-pc-windows-msvc
2019-04-04 10:49:16 -05:00
- TARGET: i686-pc-windows-msvc
2017-09-16 06:32:38 -05:00
# branches to build
branches:
# whitelist
only:
2019-06-21 13:55:24 -05:00
- auto
- try
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
- set PATH=%USERPROFILE%\.cargo\bin;%PATH%
2019-09-28 10:36:20 -05:00
- rustup default stable
- 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
- 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
- cargo install --all-features --force --path . --locked --offline
2018-11-27 04:46:09 -06:00
# Get ourselves a MIR-full libstd, and use it henceforth
2018-12-18 12:52:30 -06:00
- cargo miri setup
2019-06-20 12:45:39 -05:00
- set MIRI_SYSROOT=%USERPROFILE%\AppData\Local\rust-lang\miri\cache\HOST
2019-04-04 04:38:49 -05:00
test_script:
- set RUST_TEST_NOCAPTURE=1
- set RUST_BACKTRACE=1
2018-12-10 03:19:44 -06:00
# Test miri
2019-10-14 02:40:11 -05:00
- cargo test --release --all-features --locked
2018-12-18 12:52:30 -06:00
# Test cargo integration
- cd test-cargo-miri
2019-04-04 10:49:16 -05:00
- '"C:\msys64\mingw64\bin\python3.exe" run-test.py'
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