Skip to content

Commit 732b988

Browse files
committed
Merge pull request #360 from Razican/windows_tests
Windows tests
2 parents e0bf613 + d16c47f commit 732b988

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

appveyor.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
clone_depth: 50
2+
environment:
3+
matrix:
4+
- TARGET: nightly-x86_64-pc-windows-msvc
5+
- TARGET: nightly-i686-pc-windows-msvc
6+
- TARGET: nightly-x86_64-pc-windows-gnu
7+
MSYS_BITS: 64
8+
- TARGET: nightly-i686-pc-windows-gnu
9+
MSYS_BITS: 32
10+
- TARGET: beta-x86_64-pc-windows-msvc
11+
- TARGET: beta-i686-pc-windows-msvc
12+
- TARGET: beta-x86_64-pc-windows-gnu
13+
MSYS_BITS: 64
14+
- TARGET: beta-i686-pc-windows-gnu
15+
MSYS_BITS: 32
16+
- TARGET: 1.8.0-x86_64-pc-windows-msvc
17+
- TARGET: 1.8.0-i686-pc-windows-msvc
18+
- TARGET: 1.8.0-x86_64-pc-windows-gnu
19+
MSYS_BITS: 64
20+
- TARGET: 1.8.0-i686-pc-windows-gnu
21+
MSYS_BITS: 32
22+
- TARGET: 1.7.0-x86_64-pc-windows-msvc
23+
- TARGET: 1.7.0-x86_64-pc-windows-gnu
24+
MSYS_BITS: 64
25+
- TARGET: 1.7.0-i686-pc-windows-gnu
26+
MSYS_BITS: 32
27+
- TARGET: 1.6.0-x86_64-pc-windows-msvc
28+
- TARGET: 1.6.0-x86_64-pc-windows-gnu
29+
MSYS_BITS: 64
30+
- TARGET: 1.6.0-i686-pc-windows-gnu
31+
MSYS_BITS: 32
32+
- TARGET: 1.5.0-x86_64-pc-windows-gnu
33+
MSYS_BITS: 64
34+
- TARGET: 1.5.0-i686-pc-windows-gnu
35+
MSYS_BITS: 32
36+
- TARGET: 1.4.0-x86_64-pc-windows-gnu
37+
MSYS_BITS: 64
38+
- TARGET: 1.4.0-i686-pc-windows-gnu
39+
MSYS_BITS: 32
40+
install:
41+
- git submodule update --init --recursive
42+
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:TARGET}.exe" -FileName "rust-install.exe"
43+
- ps: .\rust-install.exe /VERYSILENT /NORESTART /DIR="C:\rust" | Out-Null
44+
- ps: $env:PATH="$env:PATH;C:\rust\bin"
45+
- if defined MSYS_BITS set PATH=C:\msys64\mingw%MSYS_BITS%\bin;C:\msys64\usr\bin;%PATH%
46+
- rustc -vV
47+
- cargo -vV
48+
build_script:
49+
- cargo build
50+
- cargo package
51+
test_script:
52+
- cargo test

0 commit comments

Comments
 (0)