rust/appveyor.yml

35 lines
1 KiB
YAML
Raw Normal View History

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