]> git.lizzy.rs Git - rust.git/blob - appveyor.yml
9db787cf41ec9805eec5b61d42bd5db246d775f0
[rust.git] / appveyor.yml
1 environment:
2     global:
3         PROJECT_NAME: rust-clippy
4     matrix:
5         #- TARGET: i686-pc-windows-gnu
6         #- TARGET: i686-pc-windows-msvc
7         #- TARGET: x86_64-pc-windows-gnu
8         - TARGET: x86_64-pc-windows-msvc
9
10 install:
11     - del rust-toolchain
12     - curl -sSf -o rustup-init.exe https://win.rustup.rs/
13     - rustup-init.exe -y --default-host %TARGET% --default-toolchain nightly
14     - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin;C:\Users\appveyor\.rustup\toolchains\nightly-%TARGET%\bin
15     - cargo install rustup-toolchain-install-master || echo "rustup-toolchain-install-master already installed"
16     - rustup-toolchain-install-master -f -n master
17     - rustup default master
18     - set PATH=%PATH%;C:\Users\appveyor\.rustup\toolchains\master\bin
19     - rustc -V
20     - cargo -V
21
22 build: false
23
24 test_script:
25     - set RUST_BACKTRACE=1
26     - cargo build --features debugging
27     - cargo test --features debugging
28
29 notifications:
30     - provider: Email
31       on_build_success: false