aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorPierre Krieger <pierre.krieger1708@gmail.com>2015-05-20 06:52:50 +0200
committerPierre Krieger <pierre.krieger1708@gmail.com>2015-05-20 06:52:50 +0200
commit214c4253e43b03c7e8e1f75a01530a15ab235c14 (patch)
treeef825fc07460f499f9cf0cae14e98d0e0f838de1 /appveyor.yml
parentcbb05791918c8da218bd5b2b423394e00ffad3fc (diff)
downloadglutin-214c4253e43b03c7e8e1f75a01530a15ab235c14.tar.gz
glutin-214c4253e43b03c7e8e1f75a01530a15ab235c14.zip
Update the appveyor file for 64bits builds
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml17
1 files changed, 13 insertions, 4 deletions
diff --git a/appveyor.yml b/appveyor.yml
index cc2c0d8..17bad94 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,11 +1,20 @@
install:
- - ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-nightly-i686-pc-windows-gnu.exe'
- - rust-nightly-i686-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
- - SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
- - rustc -V
+ - 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
- cargo -V
- git submodule update --init --recursive
+platform:
+ - x86
+ - x64
+
build: false
test_script: