forked from nanomsg/nng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
47 lines (39 loc) · 1.21 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
version: 0.0.{build}
environment:
global:
CFLAGS: /MP
TERM: xterm
matrix:
# array of all environments used to test builds
# Note that we require relatively modern Visual Studio, in order to pick
# up snprintf. You don't want the older versions of VS, really!
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
# GENERATOR: Visual Studio 15 2017
GENERATOR: Ninja
CFG: Debug
VSINSTALL: '"Microsoft Visual Studio"/2017/Community/VC/Auxiliary/Build'
MSVC_PLATFORM: x86
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
# GENERATOR: Visual Studio 15 2017 Win64
GENERATOR: Ninja
CFG: Debug
VSINSTALL: '"Microsoft Visual Studio"/2017/Community/VC/Auxiliary/Build'
MSVC_PLATFORM: amd64
cache:
- C:\ProgramData\chocolatey\bin -> appveyor.yml
- C:\ProgramData\chocolatey\lib -> appveyor.yml
install:
- ps: |
choco install ninja
init:
- cmake --version
- C:\"Program Files (x86)"/%VSINSTALL%/vcvarsall.bat %MSVC_PLATFORM%
build:
parallel: true
build_script:
- cmd: md build
- cmd: cd build
- cmd: cmake -G "%GENERATOR%" -DCMAKE_BUILD_TYPE=%CFG% ..
- cmd: cmake --build .
test_script:
- cmd: ctest --output-on-failure -C "%CFG%"