forked from DaGenix/rust-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
52 lines (52 loc) · 1.6 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
clone_depth: 50
environment:
matrix:
- TARGET: nightly-x86_64-pc-windows-msvc
- TARGET: nightly-i686-pc-windows-msvc
- TARGET: nightly-x86_64-pc-windows-gnu
MSYS_BITS: 64
- TARGET: nightly-i686-pc-windows-gnu
MSYS_BITS: 32
- TARGET: beta-x86_64-pc-windows-msvc
- TARGET: beta-i686-pc-windows-msvc
- TARGET: beta-x86_64-pc-windows-gnu
MSYS_BITS: 64
- TARGET: beta-i686-pc-windows-gnu
MSYS_BITS: 32
- TARGET: 1.8.0-x86_64-pc-windows-msvc
- TARGET: 1.8.0-i686-pc-windows-msvc
- TARGET: 1.8.0-x86_64-pc-windows-gnu
MSYS_BITS: 64
- TARGET: 1.8.0-i686-pc-windows-gnu
MSYS_BITS: 32
- TARGET: 1.7.0-x86_64-pc-windows-msvc
- TARGET: 1.7.0-x86_64-pc-windows-gnu
MSYS_BITS: 64
- TARGET: 1.7.0-i686-pc-windows-gnu
MSYS_BITS: 32
- TARGET: 1.6.0-x86_64-pc-windows-msvc
- TARGET: 1.6.0-x86_64-pc-windows-gnu
MSYS_BITS: 64
- TARGET: 1.6.0-i686-pc-windows-gnu
MSYS_BITS: 32
- TARGET: 1.5.0-x86_64-pc-windows-gnu
MSYS_BITS: 64
- TARGET: 1.5.0-i686-pc-windows-gnu
MSYS_BITS: 32
- TARGET: 1.4.0-x86_64-pc-windows-gnu
MSYS_BITS: 64
- TARGET: 1.4.0-i686-pc-windows-gnu
MSYS_BITS: 32
install:
- git submodule update --init --recursive
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:TARGET}.exe" -FileName "rust-install.exe"
- ps: .\rust-install.exe /VERYSILENT /NORESTART /DIR="C:\rust" | Out-Null
- ps: $env:PATH="$env:PATH;C:\rust\bin"
- if defined MSYS_BITS set PATH=C:\msys64\mingw%MSYS_BITS%\bin;C:\msys64\usr\bin;%PATH%
- rustc -vV
- cargo -vV
build_script:
- cargo build
- cargo package
test_script:
- cargo test