-
Notifications
You must be signed in to change notification settings - Fork 17
/
appveyor.yml
126 lines (92 loc) · 2.76 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# Windows (https://github.com/travis-ci-tester/toolchain-table)
environment:
matrix:
###
# 'default' toolchain is the same as 'vs-14-2015'
# - TOOLCHAIN: "default"
# CONFIG: Release
# - TOOLCHAIN: "default"
# CONFIG: Debug
###
- TOOLCHAIN: "ninja-vs-12-2013-win64"
CONFIG: Release
- TOOLCHAIN: "ninja-vs-12-2013-win64"
CONFIG: Debug
###
- TOOLCHAIN: "nmake-vs-12-2013-win64"
CONFIG: Release
- TOOLCHAIN: "nmake-vs-12-2013-win64"
CONFIG: Debug
###
- TOOLCHAIN: "nmake-vs-12-2013"
CONFIG: Release
- TOOLCHAIN: "nmake-vs-12-2013"
CONFIG: Debug
###
- TOOLCHAIN: "vs-10-2010"
CONFIG: Release
- TOOLCHAIN: "vs-10-2010"
CONFIG: Debug
###
- TOOLCHAIN: "vs-12-2013-win64"
CONFIG: Release
- TOOLCHAIN: "vs-12-2013-win64"
CONFIG: Debug
###
- TOOLCHAIN: "vs-12-2013-xp"
CONFIG: Release
- TOOLCHAIN: "vs-12-2013-xp"
CONFIG: Debug
###
- TOOLCHAIN: "vs-12-2013"
CONFIG: Release
- TOOLCHAIN: "vs-12-2013"
CONFIG: Debug
###
- TOOLCHAIN: "vs-14-2015"
CONFIG: Release
- TOOLCHAIN: "vs-14-2015"
CONFIG: Debug
###
- TOOLCHAIN: "vs-14-2015-win64"
CONFIG: Release
- TOOLCHAIN: "vs-14-2015-win64"
CONFIG: Debug
###
# Visual Studio 2010+ required:
# * https://github.com/google/googletest#windows-requirements
# - TOOLCHAIN: "vs-9-2008"
# CONFIG: Release
# - TOOLCHAIN: "vs-9-2008"
# CONFIG: Debug
###
- TOOLCHAIN: "mingw"
CONFIG: Release
- TOOLCHAIN: "mingw"
CONFIG: Debug
install:
# Python 3
- cmd: set PATH=C:\Python34-x64;C:\Python34-x64\Scripts;%PATH%
# Install Python package 'requests'
- cmd: pip install requests
# Install latest Polly toolchains and scripts
- cmd: appveyor DownloadFile https://github.com/ruslo/polly/archive/master.zip
- cmd: 7z x master.zip
- cmd: set POLLY_SOURCE_DIR=%cd%\polly-master
# Install dependencies (CMake, Ninja)
- cmd: python %POLLY_SOURCE_DIR%\bin\install-ci-dependencies.py
# Tune locations
- cmd: set PATH=%cd%\_ci\cmake\bin;%PATH%
- cmd: set PATH=%cd%\_ci\ninja;%PATH%
# Remove entry with sh.exe from PATH to fix error with MinGW toolchain
# (For MinGW make to work correctly sh.exe must NOT be in your path)
# * http://stackoverflow.com/a/3870338/2288008
- cmd: set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
# Use MinGW from Qt tools because version is higher
# * http://www.appveyor.com/docs/installed-software#qt
- cmd: set MINGW_PATH=C:\Qt\Tools\mingw492_32\bin
build_script:
- cmd: python %POLLY_SOURCE_DIR%\bin\build.py --toolchain "%TOOLCHAIN%" --config "%CONFIG%" --verbose --test
branches:
except:
- /^pr\..*/