2016-09-07 13:05:39 -07:00
|
|
|
environment:
|
|
|
|
|
matrix:
|
|
|
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
|
|
|
install:
|
2017-03-27 06:48:25 -07:00
|
|
|
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
2016-09-07 13:10:10 -07:00
|
|
|
- rustup-init.exe -y --default-host %TARGET% --default-toolchain beta
|
2016-09-07 13:05:39 -07:00
|
|
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
|
|
|
|
- rustc -V
|
|
|
|
|
- cargo -V
|
2019-05-29 20:33:29 -07:00
|
|
|
- rustup component add clippy
|
2016-09-07 13:05:39 -07:00
|
|
|
|
|
|
|
|
build: false
|
|
|
|
|
|
|
|
|
|
test_script:
|
2019-05-29 20:33:29 -07:00
|
|
|
- cargo clippy
|
2016-10-10 16:43:29 -07:00
|
|
|
- cargo build --target %TARGET%
|
|
|
|
|
- cargo test --target %TARGET%
|