rust/.appveyor.yml

57 lines
1.5 KiB
YAML
Raw Normal View History

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
# branches to build
branches:
# whitelist
only:
2019-06-21 20:55:24 +02:00
- auto
- try
2019-04-04 10:38:49 +01:00
cache:
- '%USERPROFILE%\.cargo'
- '%USERPROFILE%\.rustup'
2017-09-16 13:32:38 +02:00
install:
2019-04-04 10:38:49 +01:00
# Install Rust
2017-09-16 13:32:38 +02:00
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
2019-04-04 10:38:49 +01:00
- rustup-init.exe -y --default-host %TARGET% --default-toolchain stable
- set PATH=%USERPROFILE%\.cargo\bin;%PATH%
2019-04-04 10:38:49 +01:00
# Install "master" toolchain
- cargo install rustup-toolchain-install-master & exit 0
2019-04-04 10:38:49 +01:00
- set /p RUSTC_HASH=<rust-version
- rustup-toolchain-install-master -f -n master %RUSTC_HASH% -c cargo -c rust-src
- rustup default master
- rustc --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
2018-11-19 09:42:03 +01:00
- cargo build --release --all-features --all-targets
- 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:
- set RUST_TEST_NOCAPTURE=1
- set RUST_BACKTRACE=1
2018-12-10 10:19:44 +01:00
# Test miri
- cargo test --release --all-features
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