|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+# Based on template from here: https://github.com/starkat99/appveyor-rust
|
|
|
2
|
+
|
|
|
3
|
+os: Visual Studio 2015
|
|
|
4
|
+
|
|
|
5
|
+environment:
|
|
|
6
|
+ matrix:
|
|
|
7
|
+
|
|
|
8
|
+### MSVC Toolchains ###
|
|
|
9
|
+ - channel: stable
|
|
|
10
|
+ target: x86_64-pc-windows-msvc
|
|
|
11
|
+ - channel: stable
|
|
|
12
|
+ target: i686-pc-windows-msvc
|
|
|
13
|
+ - channel: nightly
|
|
|
14
|
+ target: x86_64-pc-windows-msvc
|
|
|
15
|
+ - channel: nightly
|
|
|
16
|
+ target: i686-pc-windows-msvc
|
|
|
17
|
+ - channel: 1.18.0
|
|
|
18
|
+ target: x86_64-pc-windows-msvc
|
|
|
19
|
+
|
|
|
20
|
+### GNU Toolchains ###
|
|
|
21
|
+ - channel: nightly
|
|
|
22
|
+ target: x86_64-pc-windows-gnu
|
|
|
23
|
+ - channel: nightly
|
|
|
24
|
+ target: i686-pc-windows-gnu
|
|
|
25
|
+
|
|
|
26
|
+install:
|
|
|
27
|
+ - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
|
|
28
|
+ - rustup-init -yv --default-toolchain %channel% --default-host %target%
|
|
|
29
|
+ - set PATH=%PATH%;%USERPROFILE%\.cargo\bin
|
|
|
30
|
+ - rustc -vV
|
|
|
31
|
+ - cargo -vV
|
|
|
32
|
+
|
|
|
33
|
+build: false
|
|
|
34
|
+
|
|
|
35
|
+test_script:
|
|
|
36
|
+ - cargo test --verbose
|