rust/appveyor.yml

48 lines
1.3 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
# Customize installation.
2017-09-16 06:32:38 -05:00
- rustup component add rust-src
- cargo install xargo
# Prepare a libstd with MIR (cannot use bash script, obviously).
# The flags here should be kept in sync with `add_miri_default_args` in `src/lib.rs`.
2017-09-16 06:32:38 -05:00
- cd xargo
- set RUSTFLAGS=-Zalways-encode-mir -Zmir-emit-retag -Zmir-opt-level=0
2017-09-16 06:32:38 -05:00
- xargo build
- set RUSTFLAGS=
2017-09-16 06:32:38 -05:00
- cd ..
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-19 02:42:03 -06:00
- cargo build --release --all-features --all-targets
- cargo test --release --all-features
- set MIRI_SYSROOT=%USERPROFILE%\.xargo\HOST
- cargo test --release --all-features
2017-09-16 06:32:38 -05:00
notifications:
- provider: Email
on_build_success: false