rust/.appveyor.yml
2019-04-18 16:44:43 +02:00

56 lines
1.5 KiB
YAML

environment:
global:
PROJECT_NAME: miri
matrix:
- TARGET: x86_64-pc-windows-msvc
- TARGET: i686-pc-windows-msvc
# branches to build
branches:
# whitelist
only:
- master
cache:
- '%USERPROFILE%\.cargo'
- '%USERPROFILE%\.rustup'
install:
# Install Rust
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
- rustup-init.exe -y --default-host %TARGET% --default-toolchain stable
- set PATH=%USERPROFILE%\.cargo\bin;%PATH%
# Install "master" toolchain
- cargo install rustup-toolchain-install-master & exit 0
- 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
build_script:
- set RUST_TEST_NOCAPTURE=1
- set RUST_BACKTRACE=1
- set RUSTFLAGS=-C debug-assertions
# Build and install miri
- cargo build --release --all-features --all-targets
- cargo install --all-features --force --path .
# Get ourselves a MIR-full libstd, and use it henceforth
- cargo miri setup
- set MIRI_SYSROOT=%USERPROFILE%\AppData\Local\miri\miri\cache\HOST
test_script:
# Test miri
- cargo test --release --all-features
# Test cargo integration
- cd test-cargo-miri
- '"C:\msys64\mingw64\bin\python3.exe" run-test.py'
after_test:
# Don't cache "master" toolchain, it's a waste
- rustup default stable
- rustup toolchain uninstall master
notifications:
- provider: Email
on_build_success: false