-
Notifications
You must be signed in to change notification settings - Fork 5
/
appveyor.yml
55 lines (42 loc) · 900 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
version: '{build}'
os: Visual Studio 2017
skip_tags: true
environment:
GYP_MSVS_VERSION: 2017
CACHE: C:\cache
matrix:
- toolchain: msvs
- toolchain: gcc
HOST: i686-w64-mingw32
- toolchain: gcc
HOST: x86_64-w64-mingw32
- toolchain: gcc
HOST: i686-pc-cygwin
- toolchain: gcc
HOST: x86_64-pc-cygwin
platform:
- Win32
configuration:
- Debug
- Release
matrix:
exclude:
- configuration: Release
HOST: i686-pc-cygwin
- configuration: Release
HOST: x86_64-pc-cygwin
# Use the source dir expected by gclient.
clone_folder: c:\projects\breakpad\src
install:
- call scripts\appveyor-%toolchain%.bat install
build_script:
- call scripts\appveyor-%toolchain%.bat build_script
test_script:
- call scripts\appveyor-%toolchain%.bat test_script
cache:
- C:\cache
artifacts:
- path: '**\*.exe'
- path: '**\*.lib'
- path: staging
deploy: off