Allow failures for nightly Rust
[tutil.git] / appveyor.yml
bloba09d7c45d14a0fcffd3a328df5996264ab8db4a5
1 environment:
2   matrix:
3   #- TARGET: x86_64-pc-windows-msvc
4   - TARGET: x86_64-pc-windows-gnu
5   #- TARGET: i686-pc-windows-msvc
6   - TARGET: i686-pc-windows-gnu
8 install:
9   - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe"
10   - rust-nightly-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
11   - SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
12   - SET PATH=%PATH%;C:\MinGW\bin
13   - rustc -Vv
14   - cargo -V
16 build_script:
17   - cargo build --verbose --features lints
18   - cargo package
20 test_script:
21   - cargo test --verbose --features lints