File tree 1 file changed +14
-10
lines changed
1 file changed +14
-10
lines changed Original file line number Diff line number Diff line change 1
- platform : x64
2
- os : MinGW
3
1
environment :
4
- RUST_INSTALL_DIR : C:\Rust
5
- RUST_INSTALL_TRIPLE : i686-pc-windows-gnu
6
- RUST_VERSION : 1.1.0
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
7
9
install :
8
- - ps : Start-FileDownload "https://static.rust-lang.org/dist/rust-$Env:RUST_VERSION-$Env:RUST_INSTALL_TRIPLE.exe"
9
- - cmd : rust-%RUST_VERSION%-%RUST_INSTALL_TRIPLE%.exe /VERYSILENT /NORESTART /COMPONENTS="rust,gcc,cargo" /DIR="%RUST_INSTALL_DIR%"
10
- - cmd : SET PATH=%PATH%;%RUST_INSTALL_DIR%\bin;C:\MINGW\bin\
11
- - rustc --version
12
- - cargo --version
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"
12
+ - set PATH=%PATH%;C:\Program Files (x86)\Rust\bin
13
+ - if defined MSYS_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS_BITS%\bin;C:\msys64\usr\bin
14
+ - set CARGO_TARGET_DIR=%APPVEYOR_BUILD_FOLDER%\target
15
+ - rustc -V
16
+ - cargo -V
13
17
build : false
14
18
test_script :
15
19
- cargo build -v
You can’t perform that action at this time.
0 commit comments