2017-01-05 18:26:00 +00:00
|
|
|
environment:
|
|
|
|
global:
|
|
|
|
PROJECT_NAME: rust-clippy
|
|
|
|
matrix:
|
2018-01-16 15:36:58 +00:00
|
|
|
#- TARGET: i686-pc-windows-gnu
|
2018-01-17 07:53:13 +00:00
|
|
|
#- TARGET: i686-pc-windows-msvc
|
2018-01-16 15:36:58 +00:00
|
|
|
#- TARGET: x86_64-pc-windows-gnu
|
2017-01-05 18:26:00 +00:00
|
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
|
|
|
|
|
|
install:
|
2018-07-20 14:22:28 +00:00
|
|
|
- del rust-toolchain
|
2017-01-05 18:26:00 +00:00
|
|
|
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
|
|
|
|
- rustup-init.exe -y --default-host %TARGET% --default-toolchain nightly
|
2017-01-06 20:47:11 +00:00
|
|
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin;C:\Users\appveyor\.rustup\toolchains\nightly-%TARGET%\bin
|
2018-03-19 09:48:26 +00:00
|
|
|
- cargo install rustup-toolchain-install-master || echo "rustup-toolchain-install-master already installed"
|
|
|
|
- rustup-toolchain-install-master -f -n master
|
|
|
|
- rustup default master
|
|
|
|
- set PATH=%PATH%;C:\Users\appveyor\.rustup\toolchains\master\bin
|
2017-01-05 18:26:00 +00:00
|
|
|
- rustc -V
|
|
|
|
- cargo -V
|
|
|
|
|
|
|
|
build: false
|
|
|
|
|
|
|
|
test_script:
|
2017-02-16 07:38:18 +00:00
|
|
|
- set RUST_BACKTRACE=1
|
2017-01-05 18:26:00 +00:00
|
|
|
- cargo build --features debugging
|
|
|
|
- cargo test --features debugging
|
|
|
|
|
|
|
|
notifications:
|
|
|
|
- provider: Email
|
|
|
|
on_build_success: false
|