ash/appveyor.yml

22 lines
587 B
YAML
Raw Normal View History

2019-01-11 19:10:36 +11:00
os: Visual Studio 2015
2016-12-26 12:10:27 +11:00
environment:
matrix:
2019-01-11 19:10:36 +11:00
# Stable 64-bit MSVC
- channel: stable
target: x86_64-pc-windows-msvc
2016-12-26 12:10:27 +11:00
install:
2019-01-11 19:10:36 +11:00
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init -yv --default-toolchain %channel% --default-host %target%
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
2016-12-26 12:10:27 +11:00
- rustc -vV
- cargo -vV
2018-12-09 19:11:19 +11:00
2019-01-11 19:10:36 +11:00
# 'cargo test' takes care of building for us, so disable Appveyor's build stage. This prevents
# the "directory does not contain a project or solution file" error.
build: off
test_script:
- cargo test --verbose %cargoflags%