forked from fnc12/sqlite_orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
170 lines (155 loc) · 4.98 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
# build format
version: "{build}"
skip_branch_with_pr: true
skip_commits:
files:
- .git*
- .travis.yml
- _config.yml
- LICENSE
- '*.md'
- '*.png'
- '*.sh'
# configurations to add to build matrix
configuration:
#- Debug
- Release
environment:
appveyor_yml_disable_ps_linux: true
matrix:
- job_name: clang, C++14
appveyor_build_worker_image: Ubuntu
CC: clang
CXX: clang++
SQLITE_ORM_CXX_STANDARD: "-DSQLITE_ORM_ENABLE_CXX_14=ON"
- job_name: gcc, C++14
appveyor_build_worker_image: Ubuntu
CC: gcc
CXX: g++
SQLITE_ORM_CXX_STANDARD: "-DSQLITE_ORM_ENABLE_CXX_14=ON"
# Representative for C++14
- job_name: Visual Studio 2022, x64, C++14
appveyor_build_worker_image: Visual Studio 2022
platform: x64
SQLITE_ORM_CXX_STANDARD: ""
- job_name: clang, C++17
appveyor_build_worker_image: Ubuntu
CC: clang
CXX: clang++
SQLITE_ORM_CXX_STANDARD: "-DSQLITE_ORM_ENABLE_CXX_17=ON"
- job_name: clang, C++20
appveyor_build_worker_image: Ubuntu
CC: clang
CXX: clang++
SQLITE_ORM_CXX_STANDARD: "-DSQLITE_ORM_ENABLE_CXX_20=ON"
- job_name: gcc, C++17
appveyor_build_worker_image: Ubuntu
CC: gcc
CXX: g++
SQLITE_ORM_CXX_STANDARD: "-DSQLITE_ORM_ENABLE_CXX_17=ON"
- job_name: gcc, C++20
appveyor_build_worker_image: Ubuntu
CC: gcc
CXX: g++
SQLITE_ORM_CXX_STANDARD: "-DSQLITE_ORM_ENABLE_CXX_20=ON"
- job_name: Visual Studio 2022, x64, C++17
appveyor_build_worker_image: Visual Studio 2022
platform: x64
SQLITE_ORM_CXX_STANDARD: "-DSQLITE_ORM_ENABLE_CXX_17=ON"
- job_name: Visual Studio 2022, x64, C++20
appveyor_build_worker_image: Visual Studio 2022
platform: x64
SQLITE_ORM_CXX_STANDARD: "-DSQLITE_ORM_ENABLE_CXX_20=ON"
- job_name: Visual Studio 2022, x86, C++20
appveyor_build_worker_image: Visual Studio 2022
platform: x86
SQLITE_ORM_CXX_STANDARD: "-DSQLITE_ORM_ENABLE_CXX_20=ON"
matrix:
fast_finish: true
for:
-
# Windows
matrix:
only:
- appveyor_build_worker_image: Visual Studio 2015
- appveyor_build_worker_image: Visual Studio 2022
init:
- |-
echo %appveyor_build_worker_image% - %platform% - %configuration%
if "%platform%"=="x64" (set architecture=-A x64)
if "%platform%"=="x86" (set architecture=-A Win32)
if "%appveyor_build_worker_image%"=="Visual Studio 2022" (set generator="Visual Studio 17 2022" %architecture%)
if "%appveyor_build_worker_image%"=="Visual Studio 2015" (set generator="Visual Studio 14 2015" %architecture%)
install:
- |-
cd C:\Tools\vcpkg
git fetch --tags && git checkout 2023.01.09
cd %APPVEYOR_BUILD_FOLDER%
C:\Tools\vcpkg\bootstrap-vcpkg.bat -disableMetrics
C:\Tools\vcpkg\vcpkg integrate install
set VCPKG_DEFAULT_TRIPLET=%platform%-windows
vcpkg install sqlite3 catch2
before_build:
- |-
mkdir compile
cd compile
cmake %SQLITE_ORM_CXX_STANDARD% .. -G %generator% -DCMAKE_TOOLCHAIN_FILE=C:/Tools/vcpkg/scripts/buildsystems/vcpkg.cmake
# build examples, and run tests (ie make & make test)
build_script:
- |-
cmake --build . --config %configuration%
ctest --verbose --output-on-failure --build-config %configuration%
-
# Linux
matrix:
only:
- appveyor_build_worker_image: Ubuntu
init:
- |-
echo $appveyor_build_worker_image
$CXX --version
# using custom vcpkg triplets for building and linking dynamic dependent libraries
install:
- |-
pushd $HOME/vcpkg
git fetch --tags && git checkout 2023.01.09
popd
$HOME/vcpkg/bootstrap-vcpkg.sh -disableMetrics
$HOME/vcpkg/vcpkg integrate install --overlay-triplets=vcpkg/triplets
vcpkg install sqlite3 catch2 --overlay-triplets=vcpkg/triplets
before_build:
- |-
mkdir compile
cd compile
cmake $SQLITE_ORM_CXX_STANDARD .. -DCMAKE_TOOLCHAIN_FILE=$HOME/vcpkg/scripts/buildsystems/vcpkg.cmake
# build examples, and run tests (ie make & make test)
build_script:
- |-
cmake --build .
ctest --verbose --output-on-failure
-
# macOS
matrix:
only:
- appveyor_build_worker_image: macOS
init:
- |-
echo $appveyor_build_worker_image
$CXX --version
# using custom vcpkg triplets for building and linking dynamic dependent libraries
install:
- |-
git clone --depth 1 --branch 2023.01.09 https://github.com/microsoft/vcpkg.git $HOME/vcpkg
$HOME/vcpkg/bootstrap-vcpkg.sh -disableMetrics
$HOME/vcpkg/vcpkg integrate install --overlay-triplets=vcpkg/triplets
vcpkg install sqlite3 catch2 --overlay-triplets=vcpkg/triplets
before_build:
- |-
mkdir compile
cd compile
cmake $SQLITE_ORM_CXX_STANDARD .. -DCMAKE_TOOLCHAIN_FILE=$HOME/vcpkg/scripts/buildsystems/vcpkg.cmake
# build examples, and run tests (ie make & make test)
build_script:
- |-
cmake --build .
ctest --verbose --output-on-failure