2018-11-19 20:18:37 -05:00
|
|
|
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
|
2019-01-22 11:37:26 -08:00
|
|
|
- set LOOM_MAX_DURATION=10
|
2018-01-05 10:43:37 -06:00
|
|
|
|
|
|
|
|
- rustc -V
|
|
|
|
|
- cargo -V
|
|
|
|
|
|
|
|
|
|
build: false
|
|
|
|
|
|
|
|
|
|
test_script:
|
2018-09-15 00:41:41 +00:00
|
|
|
- cargo test --all --no-fail-fast --target %TARGET%
|