rust/appveyor.yml

42 lines
1.1 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
MSYS2_BITS: 64
- TARGET: i686-pc-windows-msvc
MSYS2_BITS: 32
2017-09-16 06:32:38 -05:00
# branches to build
branches:
# whitelist
only:
- master
2017-09-16 06:32:38 -05:00
install:
# Install Rust.
- set PATH=C:\Program Files\Git\mingw64\bin;C:\msys64\mingw%MSYS2_BITS%\bin;%PATH%
- set /p RUST_TOOLCHAIN=<rust-version
2017-09-16 06:32:38 -05:00
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
- rustup-init.exe -y --default-host %TARGET% --default-toolchain %RUST_TOOLCHAIN%
- set PATH=%USERPROFILE%\.cargo\bin;%PATH%
- rustc --version
2017-09-16 06:32:38 -05:00
build: false
test_script:
2018-08-14 12:00:18 -05:00
- set RUSTFLAGS=-g
2017-09-16 06:32:38 -05:00
- set RUST_BACKTRACE=1
2018-11-25 10:30:50 -06:00
# Test plain miri
2018-11-19 02:42:03 -06:00
- cargo build --release --all-features --all-targets
- cargo test --release --all-features
2018-11-27 04:46:09 -06:00
# Get ourselves a MIR-full libstd, and use it henceforth
2018-11-25 10:17:21 -06:00
- cargo run --release --all-features --bin cargo-miri -- miri setup
2018-11-27 04:46:09 -06:00
- set MIRI_SYSROOT=%USERPROFILE%\AppData\Local\miri\miri\cache\HOST
2018-11-25 10:30:50 -06:00
# Test miri with full MIR
- cargo test --release --all-features
2017-09-16 06:32:38 -05:00
notifications:
- provider: Email
on_build_success: false