-
Notifications
You must be signed in to change notification settings - Fork 2
/
appveyor.yml
38 lines (33 loc) · 1010 Bytes
/
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
environment:
RUSTUP_INIT_SKIP_MSVC_CHECK: '1'
matrix:
- TARGET: 1.13.0-x86_64-pc-windows-msvc
- TARGET: stable-x86_64-pc-windows-msvc
- TARGET: beta-x86_64-pc-windows-msvc
- TARGET: nightly-x86_64-pc-windows-msvc
- TARGET: 1.13.0-x86_64-pc-windows-gnu
MSYS_BITS: 64
- TARGET: stable-x86_64-pc-windows-gnu
MSYS_BITS: 64
- TARGET: beta-x86_64-pc-windows-gnu
MSYS_BITS: 64
- TARGET: nightly-x86_64-pc-windows-gnu
MSYS_BITS: 64
matrix:
allow_failures:
- TARGET: nightly-x86_64-pc-windows-msvc
- TARGET: nightly-x86_64-pc-windows-gnu
cache:
- '%USERPROFILE%\.cargo -> Cargo.toml'
- '%USERPROFILE%\.rustup -> appveyor.yml'
install:
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
- rustup-init.exe -y --default-toolchain %TARGET%
- set PATH=%PATH%;C:\Users\appveyor\.cargo\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
test_script:
- cargo test