rust-clippy/appveyor.yml

34 lines
1 KiB
YAML
Raw Normal View History

2017-01-05 18:26:00 +00:00
environment:
global:
PROJECT_NAME: rust-clippy
matrix:
- TARGET: i686-pc-windows-gnu
2017-01-05 22:22:11 +00:00
MSYS2_BITS: 32
2017-01-05 18:26:00 +00:00
- TARGET: i686-pc-windows-msvc
2017-01-05 22:22:11 +00:00
MSYS2_BITS: 32
2017-01-05 18:26:00 +00:00
- TARGET: x86_64-pc-windows-gnu
2017-01-05 22:22:11 +00:00
MSYS2_BITS: 64
2017-01-05 18:26:00 +00:00
- TARGET: x86_64-pc-windows-msvc
2017-01-05 22:22:11 +00:00
MSYS2_BITS: 64
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
2017-01-06 20:47:11 +00:00
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin;C:\Users\appveyor\.rustup\toolchains\nightly-%TARGET%\bin
2017-01-05 18:26:00 +00:00
- if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
- rustc -V
- cargo -V
build: false
test_script:
- cargo build --features debugging
- cargo test --features debugging
2017-01-08 12:21:26 +00:00
- copy target\debug\cargo-clippy.exe C:\Users\appveyor\.cargo\bin\
2017-01-06 06:50:56 +00:00
- cargo clippy -- -D clippy
- cd clippy_lints && cargo clippy -- -D clippy && cd ..
2017-01-05 18:26:00 +00:00
notifications:
- provider: Email
on_build_success: false