rust-clippy/appveyor.yml

36 lines
1.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
# MSYS2_BITS: 32
2018-01-17 07:53:13 +00:00
#- TARGET: i686-pc-windows-msvc
# MSYS2_BITS: 32
#- TARGET: x86_64-pc-windows-gnu
# 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:
2017-03-20 23:52:52 +00:00
- set PATH=C:\Program Files\Git\mingw64\bin;%PATH%
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
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:
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
2018-01-19 12:12:57 +00:00
#- copy target\debug\cargo-clippy.exe C:\Users\appveyor\.cargo\bin\
#- 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