rust/appveyor.yml

36 lines
1.1 KiB
YAML
Raw Normal View History

2017-01-06 02:26:00 +08:00
environment:
global:
PROJECT_NAME: rust-clippy
matrix:
#- TARGET: i686-pc-windows-gnu
# MSYS2_BITS: 32
2018-01-17 15:53:13 +08:00
#- TARGET: i686-pc-windows-msvc
# MSYS2_BITS: 32
#- TARGET: x86_64-pc-windows-gnu
# MSYS2_BITS: 64
2017-01-06 02:26:00 +08:00
- TARGET: x86_64-pc-windows-msvc
2017-01-06 06:22:11 +08:00
MSYS2_BITS: 64
2017-01-06 02:26:00 +08:00
install:
2017-03-21 07:52:52 +08:00
- set PATH=C:\Program Files\Git\mingw64\bin;%PATH%
2017-01-06 02:26:00 +08:00
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
- rustup-init.exe -y --default-host %TARGET% --default-toolchain nightly
2017-01-07 04:47:11 +08:00
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin;C:\Users\appveyor\.rustup\toolchains\nightly-%TARGET%\bin
2017-01-06 02:26:00 +08: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 15:38:18 +08:00
- set RUST_BACKTRACE=1
2017-01-06 02:26:00 +08:00
- cargo build --features debugging
- cargo test --features debugging
2018-01-19 20:12:57 +08: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-06 02:26:00 +08:00
notifications:
- provider: Email
on_build_success: false