-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappveyor.yml
More file actions
100 lines (76 loc) · 3.2 KB
/
appveyor.yml
File metadata and controls
100 lines (76 loc) · 3.2 KB
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
# Windows (https://github.com/travis-ci-tester/toolchain-table)
environment:
global:
GITHUB_USER_PASSWORD:
secure: t4MWRbGRj8uW3gvhakZdRYQ/RJHvNNj3ye/ptqE8kIrHKS4gg5XRlPangRiV70AP
matrix:
- TOOLCHAIN: "vs-15-2017-win64-store-10-cxx17"
BUILD_SHARED_LIBS: ON
ARCHIVE_MODE: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
HUNTER_BINARY_DIR: C:\__BIN
- TOOLCHAIN: "vs-15-2017-win64-store-10-cxx17"
BUILD_SHARED_LIBS: OFF
ARCHIVE_MODE: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
HUNTER_BINARY_DIR: C:\__BIN
- TOOLCHAIN: "vs-15-2017-win64-store-10-cxx17"
BUILD_SHARED_LIBS: OFF
ARCHIVE_MODE: ON
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
HUNTER_BINARY_DIR: C:\__BIN
- TOOLCHAIN: "vs-15-2017-win64"
BUILD_SHARED_LIBS: ON
ARCHIVE_MODE: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- TOOLCHAIN: "vs-15-2017-win64"
BUILD_SHARED_LIBS: OFF
ARCHIVE_MODE: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- TOOLCHAIN: "vs-15-2017-win64"
BUILD_SHARED_LIBS: OFF
ARCHIVE_MODE: ON
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- TOOLCHAIN: "vs-14-2015-win64"
BUILD_SHARED_LIBS: ON
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
- TOOLCHAIN: "vs-14-2015-win64"
BUILD_SHARED_LIBS: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
- TOOLCHAIN: "vs-12-2013-win64"
BUILD_SHARED_LIBS: ON
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
- TOOLCHAIN: "vs-12-2013-win64"
BUILD_SHARED_LIBS: OFF
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
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_ROOT=%cd%\polly-master
# Install dependencies (CMake, Ninja)
- cmd: python %POLLY_ROOT%\bin\install-ci-dependencies.py
# Tune locations
- cmd: set PATH=%cd%\_ci\cmake\bin;%PATH%
- cmd: set PATH=%cd%\_ci\ninja;%PATH%
- cmd: git submodule update --init --recursive
# 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;=%
- cmd: set MINGW_PATH=C:\mingw-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\mingw64\bin
# MSYS2 location
- cmd: set MSYS_PATH=C:\msys64\usr\bin
# Visual Studio 15 2017: Mimic behavior of older versions
- cmd: set VS150COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools
build_script:
- cmd: python %POLLY_ROOT%\bin\polly.py --toolchain %TOOLCHAIN% --config Release --verbose --fwd BUILD_SHARED_LIBS=%BUILD_SHARED_LIBS% HUNTER_BUILD_SHARED_LIBS=%BUILD_SHARED_LIBS% HUNTER_SUPPRESS_LIST_OF_FILES=ON ARCHIVE_MODE=%ARCHIVE_MODE% --test
# http://www.appveyor.com/docs/branches#white-and-blacklisting
# Exclude branch 'pkg.template'. Nothing to build there.
branches:
except:
- /^pr\..*/