Files
tokio/appveyor.yml
T

16 lines
384 B
YAML
Raw Normal View History

2016-09-07 13:05:39 -07:00
environment:
matrix:
- TARGET: x86_64-pc-windows-msvc
install:
2017-03-27 06:48:25 -07:00
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init.exe -y --default-host %TARGET% --default-toolchain beta
2016-09-07 13:05:39 -07:00
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
- rustc -V
- cargo -V
build: false
test_script:
2016-10-10 16:43:29 -07:00
- cargo build --target %TARGET%
- cargo test --target %TARGET%