aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorPierre Krieger <pierre.krieger1708@gmail.com>2015-06-17 19:20:21 +0200
committerPierre Krieger <pierre.krieger1708@gmail.com>2015-07-04 13:57:29 +0200
commitdb901e3d83bb41fdd0d77768a264e25af249fac4 (patch)
tree69082a2c44592867d00f9771ef0ea47a64d1bdbb /appveyor.yml
parent836e53e55a94f3126ff17a956fe6328198d20f38 (diff)
downloadglutin-db901e3d83bb41fdd0d77768a264e25af249fac4.tar.gz
glutin-db901e3d83bb41fdd0d77768a264e25af249fac4.zip
Test glutin with MSVC++
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml30
1 files changed, 16 insertions, 14 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 17bad94..b3ec520 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,19 +1,21 @@
+environment:
+ CARGO_TARGET: x86_64-pc-windows-gnu
+ matrix:
+ - TARGET: x86_64-pc-windows-msvc
+ - TARGET: i686-pc-windows-gnu
install:
- - ps: |
- if ($env:PLATFORM -eq "x86") {
- Start-FileDownload 'https://static.rust-lang.org/dist/rust-1.0.0-i686-pc-windows-gnu.exe' -FileName rust.exe
- } else {
- Start-FileDownload 'https://static.rust-lang.org/dist/rust-1.0.0-x86_64-pc-windows-gnu.exe' -FileName rust.exe
- }
- - rust.exe /VERYSILENT /NORESTART /DIR="C:\Program Files\Rust"
- - SET PATH=%PATH%;C:\Program Files\Rust\bin
- - rustc -vV
+ - ps: Start-FileDownload "https://static.rust-lang.org/dist/rustc-nightly-${env:TARGET}.tar.gz"
+ - ps: Start-FileDownload "https://static.rust-lang.org/cargo-dist/cargo-nightly-${env:CARGO_TARGET}.tar.gz"
+ - 7z x rustc-nightly-%TARGET%.tar.gz > nul
+ - 7z x rustc-nightly-%TARGET%.tar > nul
+ - 7z x cargo-nightly-%CARGO_TARGET%.tar.gz > nul
+ - 7z x cargo-nightly-%CARGO_TARGET%.tar > nul
+ - call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64
+ - set PATH=%PATH%;%cd%/rustc-nightly-%TARGET%/rustc/bin
+ - set PATH=%PATH%;%cd%/cargo-nightly-%CARGO_TARGET%/cargo/bin
+ - SET PATH=%PATH%;C:\MinGW\bin
+ - rustc -V
- cargo -V
- - git submodule update --init --recursive
-
-platform:
- - x86
- - x64
build: false