]> git.lizzy.rs Git - rust.git/blob - appveyor.yml
Don't run dogfood on windows
[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 branches:
11     # Don't build these branches
12     except:
13         # Used by bors
14         - trying.tmp
15         - staging.tmp
16
17 install:
18     - curl -sSf -o rustup-init.exe https://win.rustup.rs/
19     - rustup-init.exe -y --default-host %TARGET% --default-toolchain beta
20     - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
21     - set PATH=%PATH%;C:\Users\appveyor\.rustup\toolchains\master\bin
22     - rustc -V
23     - cargo -V
24
25 build: false
26
27 test_script:
28     - set RUST_BACKTRACE=1
29     - set RUSTC_BOOTSTRAP=1
30     - cargo build --features debugging
31     - cargo test --features debugging
32
33 notifications:
34     - provider: Email
35       on_build_success: false