-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathappveyor.yml
44 lines (34 loc) · 1.08 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
########################################################################
## * not all components will be configured
## * build only on a 64-bit environment
## * only builds for release configuration
##
## FAIL: The build takes too long, most components are disabled.
## TODO: but build takes too long... 40 min limit
## * run the self tests after install
########################################################################
version: '{build}'
platform: x64
configuration:
- RelWithDebInfo
environment:
global:
GENERATOR: Visual Studio 12 Win64
notifications:
- provider: Slack
auth_token: xoxp-13185284785-13181066693-13580482535-8e6bf7284b
channel: github
template: "{{commitId}}, {{status}} by {{commitAuthor}} _{{commitMessage}}_"
# Operating system (build VM template)
os: Windows Server 2012 R2
# branches to build
branches:
# whitelist
only:
- master
#before_build:
# configure and build
build_script:
- mkdir build && cd build
- cmake ../ -G "%GENERATOR%" -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DENABLE_GUI=OFF
- cmake --build . --config %CONFIGURATION%