• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1environment:
2  matrix:
3  - TARGET: x86_64-pc-windows-msvc
4    VERSION: 1.31.0
5  - TARGET: i686-pc-windows-msvc
6    VERSION: 1.31.0
7  - TARGET: i686-pc-windows-gnu
8    VERSION: 1.31.0
9  - TARGET: x86_64-pc-windows-msvc
10    VERSION: beta
11  - TARGET: i686-pc-windows-msvc
12    VERSION: beta
13  - TARGET: i686-pc-windows-gnu
14    VERSION: beta
15  - TARGET: x86_64-pc-windows-msvc
16    VERSION: nightly
17  - TARGET: i686-pc-windows-msvc
18    VERSION: nightly
19  - TARGET: i686-pc-windows-gnu
20    VERSION: nightly
21install:
22  - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:VERSION}-${env:TARGET}.exe"
23  - rust-%VERSION%-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
24  - SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
25  - SET PATH=%PATH%;C:\MinGW\bin
26  - rustc -V
27  - cargo -V
28
29build: false
30
31test_script:
32  - cargo test --verbose
33