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
|
2018-10-25 18:14:39 +00:00
|
|
|
|
2018-10-22 15:30:01 +00:00
|
|
|
branches:
|
2019-07-09 11:34:22 +00:00
|
|
|
# Only build AppVeyor on r+ and try branch
|
2019-04-24 18:25:59 +00:00
|
|
|
only:
|
|
|
|
- auto
|
|
|
|
- try
|
2018-10-25 18:14:39 +00:00
|
|
|
|
2017-01-05 18:26:00 +00:00
|
|
|
install:
|
|
|
|
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
|
|
|
|
- rustup-init.exe -y --default-host %TARGET% --default-toolchain nightly
|
2018-08-22 16:08:52 +00:00
|
|
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
2018-10-30 14:42:15 +00:00
|
|
|
- del rust-toolchain
|
2019-10-12 03:18:31 +00:00
|
|
|
- cargo install --git https://github.com/kennytm/rustup-toolchain-install-master --debug || echo "rustup-toolchain-install-master already installed"
|
2019-10-11 08:53:55 +00:00
|
|
|
- rustup-toolchain-install-master -f -n master -c rustc-dev
|
2019-08-03 10:30:51 +00:00
|
|
|
- rustup component add rustfmt --toolchain nightly & exit 0 # Format test handles missing rustfmt
|
2018-10-30 14:42:15 +00:00
|
|
|
- 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
|