winit-sonoma-fix/appveyor.yml

17 lines
720 B
YAML
Raw Normal View History

2014-10-26 21:27:46 +11:00
install:
2014-11-10 02:44:36 +11:00
- ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-nightly-i686-pc-windows-gnu.exe'
- ps: Start-FileDownload 'https://static.rust-lang.org/cargo-dist/cargo-nightly-i686-pc-windows-gnu.tar.gz'
2014-12-21 04:36:01 +11:00
- rust-nightly-i686-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
2014-11-10 20:26:00 +11:00
- 7z e cargo-nightly-i686-pc-windows-gnu.tar.gz
- 7z x cargo-nightly-i686-pc-windows-gnu.tar
2014-10-26 21:27:46 +11:00
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
2014-11-10 20:26:00 +11:00
- SET PATH=%PATH%;%CD%\cargo-nightly-i686-pc-windows-gnu\bin
- rustc -v
- cargo -V
2014-10-26 21:27:46 +11:00
build: false
test_script:
- cargo test --verbose --no-default-features --features "window"
- cargo test --verbose --no-default-features --features "headless"