forked from danielaparker/jsoncons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml.bak
86 lines (72 loc) · 2.39 KB
/
appveyor.yml.bak
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
version: '{build}'
# Appveyor builds now take too long to compile, exceed resource limits
environment:
matrix:
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
# configuration: Debug
# arch: x86
# CXX_FLAGS: ""
# LINKER_FLAGS: ""
# CMAKE_OPTIONS: ""
# GENERATOR: Visual Studio 14 2015
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
# configuration: Release
# arch: x86
# CXX_FLAGS: ""
# LINKER_FLAGS: ""
# CMAKE_OPTIONS: ""
# GENERATOR: Visual Studio 14 2015
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
# configuration: Release
# arch: x86
# CXX_FLAGS: ""
# LINKER_FLAGS: ""
# CMAKE_OPTIONS: ""
# GENERATOR: Visual Studio 14 2015
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
# configuration: Release
# arch: x64
# CXX_FLAGS: ""
# LINKER_FLAGS: ""
# CMAKE_OPTIONS: ""
# GENERATOR: Visual Studio 14 2015
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
# configuration: Release
# arch: x86
# CXX_FLAGS: "/permissive- /std:c++latest /utf-8"
# LINKER_FLAGS: ""
# CMAKE_OPTIONS: ""
# GENERATOR: Visual Studio 15 2017
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
# configuration: Release
# arch: x64
# CXX_FLAGS: "/permissive- /std:c++latest /Zc:__cplusplus /utf-8 /F4000000"
# LINKER_FLAGS: "/STACK:4000000"
# CMAKE_OPTIONS: ""
# GENERATOR: Visual Studio 15 2017
# - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
# configuration: Release
# arch: x86
# CXX_FLAGS: ""
# LINKER_FLAGS: ""
# CMAKE_OPTIONS: "-DJSON_ImplicitConversions=OFF"
# GENERATOR: Visual Studio 16 2019
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
vsversion: 2019
configuration: Release
arch: x64
CXX_FLAGS: "/std:c++latest"
LINKER_FLAGS: ""
GENERATOR: Visual Studio 16 2019
init:
- cmake --version
- msbuild /version
install:
- if "%arch%"=="x86" set GENERATOR_PLATFORM=Win32
before_build:
- cmake . -G "%GENERATOR%" -A "%GENERATOR_PLATFORM%" -DCMAKE_CXX_FLAGS="%CXX_FLAGS%" -DCMAKE_EXE_LINKER_FLAGS="%LINKER_FLAGS%" -DCMAKE_IGNORE_PATH="C:/Program Files/Git/usr/bin" -DBUILD_TESTS=1=1 "%CMAKE_OPTIONS%" .
build_script:
- cmake --build . --target unit_tests --config "%configuration%"
- cd tests
test_script:
- .\%configuration%\unit_tests