We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfb1615 commit daaec27Copy full SHA for daaec27
appveyor.yml
@@ -1,13 +1,16 @@
1
environment:
2
matrix:
3
+ - TARGET: x86_64-pc-windows-gnu
4
+ MSYS_BITS: 64
5
+ - TARGET: i686-pc-windows-gnu
6
+ MSYS_BITS: 32
7
- TARGET: x86_64-pc-windows-msvc
8
- TARGET: i686-pc-windows-msvc
- - TARGET: i686-pc-windows-gnu
9
install:
10
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe"
11
- rust-nightly-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
- - SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
- - SET PATH=%PATH%;C:\MinGW\bin
12
+ - set PATH=%PATH%;C:\Program Files (x86)\Rust\bin
13
+ - if defined MSYS_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS_BITS%\bin
14
- rustc -V
15
- cargo -V
16
0 commit comments