winit-sonoma-fix/appveyor.yml

36 lines
885 B
YAML
Raw Normal View History

2015-06-18 03:20:21 +10:00
environment:
matrix:
- TARGET: x86_64-pc-windows-msvc
CHANNEL: stable
2015-09-24 16:37:52 +10:00
- TARGET: i686-pc-windows-msvc
CHANNEL: stable
- TARGET: x86_64-pc-windows-gnu
CHANNEL: stable
- TARGET: i686-pc-windows-gnu
CHANNEL: stable
- TARGET: x86_64-pc-windows-msvc
CHANNEL: nightly
- TARGET: i686-pc-windows-msvc
CHANNEL: nightly
- TARGET: x86_64-pc-windows-gnu
CHANNEL: nightly
2015-06-18 03:20:21 +10:00
- TARGET: i686-pc-windows-gnu
CHANNEL: nightly
matrix:
allow_failures:
- CHANNEL: nightly
2014-10-26 21:27:46 +11:00
install:
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init -yv --default-toolchain %CHANNEL% --default-host %TARGET%
- SET PATH=%PATH%;%USERPROFILE%\.cargo\bin
2015-06-18 03:20:21 +10:00
- SET PATH=%PATH%;C:\MinGW\bin
- rustc -V
- cargo -V
2014-10-26 21:27:46 +11:00
build: false
test_script:
2015-05-05 01:48:15 +10:00
- cargo test --verbose
- cargo test --features serde --verbose
- cargo doc --no-deps