Files
tokio/.appveyor.yml
T

23 lines
512 B
YAML
Raw Normal View History

image: Visual Studio 2017
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
2018-09-19 11:53:11 -07:00
- set RUST_BACKTRACE=1
- set LOOM_MAX_DURATION=10
2018-01-05 10:43:37 -06:00
- rustc -V
- cargo -V
build: false
test_script:
- cargo test --all --no-fail-fast --target %TARGET%