rust/appveyor.yml

45 lines
1.2 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:
- set RUST_TEST_NOCAPTURE=1
2017-09-16 06:32:38 -05:00
- set RUST_BACKTRACE=1
2018-12-18 12:52:30 -06:00
# Build and install miri
2018-11-19 02:42:03 -06:00
- cargo build --release --all-features --all-targets
2018-12-18 12:52:30 -06:00
- cargo install --all-features --force --path .
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
2018-11-27 04:46:09 -06:00
- set MIRI_SYSROOT=%USERPROFILE%\AppData\Local\miri\miri\cache\HOST
2018-12-10 03:19:44 -06:00
# Test miri
- cargo test --release --all-features
2018-12-18 12:52:30 -06:00
# Test cargo integration
- cd test-cargo-miri
- python3 run-test.py
2017-09-16 06:32:38 -05:00
notifications:
- provider: Email
on_build_success: false