2017-01-05 12:26:00 -06:00
|
|
|
environment:
|
|
|
|
global:
|
|
|
|
PROJECT_NAME: rust-clippy
|
|
|
|
matrix:
|
|
|
|
- TARGET: i686-pc-windows-gnu
|
2017-01-05 16:22:11 -06:00
|
|
|
MSYS2_BITS: 32
|
2017-01-05 12:26:00 -06:00
|
|
|
- TARGET: i686-pc-windows-msvc
|
2017-01-05 16:22:11 -06:00
|
|
|
MSYS2_BITS: 32
|
2017-01-05 12:26:00 -06:00
|
|
|
- TARGET: x86_64-pc-windows-gnu
|
2017-01-05 16:22:11 -06:00
|
|
|
MSYS2_BITS: 64
|
2017-01-05 12:26:00 -06:00
|
|
|
- TARGET: x86_64-pc-windows-msvc
|
2017-01-05 16:22:11 -06:00
|
|
|
MSYS2_BITS: 64
|
2017-01-05 12:26:00 -06:00
|
|
|
|
|
|
|
install:
|
2017-03-20 18:52:52 -05:00
|
|
|
- set PATH=C:\Program Files\Git\mingw64\bin;%PATH%
|
2017-01-05 12:26:00 -06:00
|
|
|
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
|
|
|
|
- rustup-init.exe -y --default-host %TARGET% --default-toolchain nightly
|
2017-01-06 14:47:11 -06:00
|
|
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin;C:\Users\appveyor\.rustup\toolchains\nightly-%TARGET%\bin
|
2017-01-05 12:26:00 -06:00
|
|
|
- if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
|
|
|
|
- rustc -V
|
|
|
|
- cargo -V
|
|
|
|
|
|
|
|
build: false
|
|
|
|
|
|
|
|
test_script:
|
2017-02-16 01:38:18 -06:00
|
|
|
- set RUST_BACKTRACE=1
|
2017-01-05 12:26:00 -06:00
|
|
|
- cargo build --features debugging
|
|
|
|
- cargo test --features debugging
|
2017-08-02 10:24:07 -05:00
|
|
|
- copy target\debug\cargo-clippy.exe C:\Users\appveyor\.cargo\bin\
|
2017-01-06 00:50:56 -06:00
|
|
|
- cargo clippy -- -D clippy
|
2017-02-28 05:47:48 -06:00
|
|
|
- cd clippy_lints && cargo clippy -- -D clippy && cd ..
|
2017-01-05 12:26:00 -06:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
- provider: Email
|
|
|
|
on_build_success: false
|