]> git.proxmox.com Git - rustc.git/blame - src/vendor/compiletest_rs/appveyor.yml
New upstream version 1.26.0+dfsg1
[rustc.git] / src / vendor / compiletest_rs / appveyor.yml
CommitLineData
2c00a5a8
XL
1environment:
2 matrix:
3 - TARGET: x86_64-pc-windows-gnu
4 CHANNEL: nightly
5 - TARGET: x86_64-pc-windows-msvc
6 CHANNEL: nightly
7
8install:
9 - curl -sSf -o rustup-init.exe https://win.rustup.rs
10 - rustup-init.exe --default-host %TARGET% --default-toolchain %CHANNEL% -y
11 - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
12 - rustc -Vv
13 - cargo -V
14
15build: false
16
17test_script:
18 - cargo build
0531ce1d 19 - cargo build --features norustc
2c00a5a8
XL
20
21branches:
22 only:
23 - master
24