rust/appveyor.yml

33 lines
1.2 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
2018-01-17 08:53:13 +01:00
#- TARGET: i686-pc-windows-msvc
#- TARGET: x86_64-pc-windows-gnu
2017-01-05 19:26:00 +01:00
- TARGET: x86_64-pc-windows-msvc
install:
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
- rustup-init.exe -y --default-host %TARGET% --default-toolchain nightly
2018-08-22 18:08:52 +02:00
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
# https://support.microsoft.com/en-us/help/2524009/error-running-command-shell-scripts-that-include-parentheses
- if defined GITHUB_TOKEN del rust-toolchain
- if defined GITHUB_TOKEN (cargo install rustup-toolchain-install-master || echo "rustup-toolchain-install-master already installed")
- if defined GITHUB_TOKEN rustup-toolchain-install-master -f -n master --github-token %GITHUB_TOKEN%
- if defined GITHUB_TOKEN rustup default master
- if defined GITHUB_TOKEN set PATH=%PATH%;C:\Users\appveyor\.rustup\toolchains\master\bin
2017-01-05 19:26:00 +01:00
- 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
notifications:
- provider: Email
on_build_success: false