forked from mozilla/sccache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
53 lines (46 loc) · 1.15 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
53
os: Visual Studio 2015
environment:
matrix:
# Stable 64-bit MSVC
- channel: stable
target: x86_64-pc-windows-msvc
# Beta 64-bit MSVC
- channel: beta
target: x86_64-pc-windows-msvc
# Nightly 64-bit MSVC
- channel: nightly
target: x86_64-pc-windows-msvc
FEATURES: --features=unstable
CARGO_TEST_EXTRA: --all
### GNU Toolchains ###
#TODO: figure out how to get mingw64 working on appveyor
# Stable 64-bit GNU
# - channel: stable
# target: x86_64-pc-windows-gnu
# Stable 32-bit GNU
# - channel: stable
# target: i686-pc-windows-gnu
# Beta 64-bit GNU
# - channel: beta
# target: x86_64-pc-windows-gnu
# Beta 32-bit GNU
# - channel: beta
# target: i686-pc-windows-gnu
# Nightly 64-bit GNU
# - channel: nightly
# target: x86_64-pc-windows-gnu
# Nightly 32-bit GNU
# - channel: nightly
# target: i686-pc-windows-gnu
matrix:
allow_failures:
- channel: nightly
install:
- ps: .\appveyor_rust_install.ps1
build_script:
- cmd: cargo build --verbose %FEATURES%
test_script:
- cmd: cargo test --verbose %FEATURES% %CARGO_TEST_EXTRA%
branches:
only:
- master