summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre-Henri Symoneaux <pierre-henri.symoneaux@nokia.com>2017-05-29 23:08:53 +0200
committerPierre-Henri Symoneaux <pierre-henri.symoneaux@nokia.com>2017-05-29 23:18:10 +0200
commitb167e171d704963ec1173a96b35b1abb69474ab0 (patch)
treec4b08210085371c2f38eb73c419c57a30f1e716e
parent4039a5e6a9dd33549e8d394dcd0c622a9fa0bca6 (diff)
Appveyor now tests against 32 & 64 bits gnu and msvc stable rust
-rw-r--r--appveyor.yml11
1 files changed, 9 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index e8d3e26..f653c4b 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,6 +1,13 @@
+environment:
+ matrix:
+ - TARGET: i686-pc-windows-gnu
+ - TARGET: i686-pc-windows-msvc
+ - TARGET: x86_64-pc-windows-gnu
+ - TARGET: x86_64-pc-windows-msvc
+
install:
- - ps: Start-FileDownload 'https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-gnu/rustup-init.exe'
- - rustup-init.exe -y --default-host x86_64-pc-windows-gnu --default-toolchain stable
+ - ps: Start-FileDownload "https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe"
+ - rustup-init.exe -y --default-host %TARGET% --default-toolchain stable
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
- rustc -V
- cargo -V