rust/appveyor.yml

20 lines
350 B
YAML
Raw Normal View History

2018-01-27 18:13:44 -06:00
os: Visual Studio 2015
install:
- curl https://win.rustup.rs/ --output rustup-init.exe
2018-01-27 18:13:44 -06:00
- rustup-init -yv --default-toolchain stable --default-host x86_64-pc-windows-msvc
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
- rustc -vV
- cargo -vV
build: false
2018-01-27 18:14:30 -06:00
test_script:
2018-01-27 18:13:44 -06:00
- cargo test
2018-01-27 18:23:05 -06:00
branches:
only:
- staging
- master
- trying