Use the correct variable name
[tutil.git] / appveyor.yml
blobdc2d3da8dc8e38207d7d822924a40047f1ad5555
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: false
18 test_script:
19   - cargo build --verbose --features lints
20   - cargo test --verbose --features lints