Files
tokio/.appveyor.yml
T

20 lines
417 B
YAML
Raw Normal View History

2018-01-05 10:43:37 -06:00
environment:
matrix:
- TARGET: x86_64-pc-windows-msvc
2018-04-02 19:37:56 +03:00
platform: x64
- TARGET: i686-pc-windows-msvc
platform: x86
2018-01-05 10:43:37 -06:00
install:
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
2018-04-02 19:37:56 +03:00
- rustup-init.exe -y --default-host %TARGET%
2018-01-05 10:43:37 -06:00
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
- rustc -V
- cargo -V
build: false
test_script:
- cargo test --all --target %TARGET%