os: Visual Studio 2015 branches: only: - staging - trying - master - dev - lokathor matrix: fast_finish: true environment: matrix: - channel: stable target: x86_64-pc-windows-msvc - channel: beta target: x86_64-pc-windows-msvc - channel: stable target: x86_64-pc-windows-gnu - channel: beta target: x86_64-pc-windows-gnu install: - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe - rustup-init -y --default-toolchain %channel% --default-host %target% - set PATH=%PATH%;%USERPROFILE%\.cargo\bin - rustup component add clippy - rustc -vV - cargo -vV # On advice of retep we skip the "build" script phase build: false test_script: - cargo clippy --all --all-features --all-targets -- -D warnings - cargo -vv build - cargo -vv test