rust/appveyor.yml

44 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:
- set PATH=C:\Program Files\Git\mingw64\bin;%PATH%
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
- rustup-init.exe -y --default-host %TARGET% --default-toolchain nightly
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin;C:\Users\appveyor\.rustup\toolchains\nightly-%TARGET%\bin
- if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
- rustc -V
- cargo -V
- rustup component add rust-src
- cargo install xargo
2017-09-16 06:32:38 -05:00
- cd xargo
- set RUSTFLAGS=-Zalways-encode-mir -Zmir-emit-validate=1
- xargo build
- 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-05-09 07:33:17 -05:00
- cargo build --release
- cargo test --release
2018-07-13 09:29:00 -05:00
- set MIRI_SYSROOT=C:\Users\appveyor\.xargo\HOST
- cargo test --release
2017-09-16 06:32:38 -05:00
notifications:
- provider: Email
on_build_success: false