-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakePresets.json
More file actions
550 lines (457 loc) · 23.4 KB
/
CMakePresets.json
File metadata and controls
550 lines (457 loc) · 23.4 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
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 25,
"patch": 0
},
"configurePresets": [
{
"name": "base",
"hidden": true,
"binaryDir": "${sourceDir}/build/${presetName}",
"installDir": "${sourceDir}/build/install/${presetName}",
"cacheVariables": {
"CMAKE_PROJECT_TOP_LEVEL_INCLUDES": "${sourceDir}/conan_provider.cmake",
"CMAKE_FIND_PACKAGE_PREFER_CONFIG": "TRUE",
"CMAKE_POSITION_INDEPENDENT_CODE": "TRUE",
"CMAKE_CXX_STANDARD": "20",
"aide_ENABLE_IPO": "OFF",
"aide_WARNINGS_AS_ERRORS": "OFF",
"aide_ENABLE_USER_LINKER": "OFF",
"aide_ENABLE_SANITIZER_ADDRESS": "OFF",
"aide_ENABLE_SANITIZER_LEAK": "OFF",
"aide_ENABLE_SANITIZER_UNDEFINED": "OFF",
"aide_ENABLE_SANITIZER_THREAD": "OFF",
"aide_ENABLE_SANITIZER_MEMORY": "OFF",
"aide_ENABLE_UNITY_BUILD": "OFF",
"aide_ENABLE_CLANG_TIDY": "OFF",
"aide_ENABLE_CPPCHECK": "OFF",
"aide_ENABLE_PCH": "OFF",
"aide_ENABLE_CACHE": "OFF",
"aide_ENABLE_ABI_COMPLIANCE_CHECK": "OFF",
"aide_ENABLE_COVERAGE": "OFF"
}
},
{
"name": "platform-unix",
"hidden": true,
"inherits": "base",
"condition": {
"type": "inList",
"string": "${hostSystemName}",
"list": ["Linux", "Darwin"]
},
"generator": "Ninja"
},
{
"name": "platform-windows",
"hidden": true,
"inherits": "base",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
},
"generator": "Visual Studio 17 2022",
"architecture": "x64"
},
{
"name": "platform-windows-ci",
"hidden": true,
"inherits": "base",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
},
"generator": "Ninja"
},
{ "name": "clang", "hidden": true,
"cacheVariables": {
"CMAKE_C_COMPILER": "clang",
"CMAKE_CXX_COMPILER": "clang++"
}
},
{ "name": "debug", "hidden": true,
"cacheVariables": { "CMAKE_BUILD_TYPE": "Debug" }
},
{ "name": "release", "hidden": true,
"cacheVariables": { "CMAKE_BUILD_TYPE": "RelWithDebInfo" }
},
{ "name": "shared", "hidden": true,
"cacheVariables": { "BUILD_SHARED_LIBS": "ON" }
},
{ "name": "static", "hidden": true,
"cacheVariables": { "BUILD_SHARED_LIBS": "OFF" }
},
{ "name": "static-analysis", "hidden": true,
"cacheVariables": {
"aide_ENABLE_CLANG_TIDY": "ON",
"aide_ENABLE_CPPCHECK": "ON"
}
},
{ "name": "werror", "hidden": true,
"cacheVariables": { "aide_WARNINGS_AS_ERRORS": "ON" }
},
{ "name": "sanitizers", "hidden": true,
"cacheVariables": {
"aide_ENABLE_SANITIZER_ADDRESS": "ON",
"aide_ENABLE_SANITIZER_UNDEFINED": "ON"
},
"environment": {
"ASAN_OPTIONS": "detect_odr_violation=0:detect_stack_use_after_return=1",
"LSAN_OPTIONS": "suppressions=${sourceDir}/lsan.supp",
"UBSAN_OPTIONS": "print_stacktrace=1"
}
},
{
"name": "coverage",
"hidden": true,
"cacheVariables": {
"aide_ENABLE_COVERAGE": "ON",
"CMAKE_C_COMPILER": "gcc",
"CMAKE_CXX_COMPILER": "g++"
}
},
{ "name": "abi-check", "hidden": true,
"cacheVariables": {
"CMAKE_C_COMPILER": "gcc",
"CMAKE_CXX_COMPILER": "g++",
"aide_ENABLE_ABI_COMPLIANCE_CHECK": "ON",
"aide_PACKAGING_MAINTAINER_MODE": "ON"
}
},
{ "name": "codeql", "hidden": true,
"cacheVariables": { "aide_ENABLE_COVERAGE": "ON" }
},
{ "name": "doxygen", "hidden": true,
"cacheVariables": { "ENABLE_DOXYGEN": "ON" }
},
{ "name": "test-on-ci", "hidden": true,
"cacheVariables": { "UNIT_TESTS_RUN_ON_CI": "ON" }
},
{ "name": "role-client", "hidden": true },
{ "name": "role-dev", "hidden": true,
"inherits": ["werror", "sanitizers", "coverage", "static-analysis"]
},
{ "name": "role-ci-strict", "hidden": true,
"inherits": ["werror", "sanitizers", "test-on-ci"]
},
{ "name": "role-ci-static", "hidden": true,
"inherits": ["werror", "static-analysis", "test-on-ci"]
},
{ "name": "dev-unix-static-debug", "inherits": ["clang","static","debug","role-dev", "platform-unix"] },
{ "name": "dev-unix-static-release", "inherits": ["clang","static","release","role-dev", "platform-unix"] },
{ "name": "dev-unix-shared-debug", "inherits": ["clang","shared","debug","role-dev", "platform-unix"] },
{ "name": "dev-unix-shared-release", "inherits": ["clang","shared","release","role-dev", "platform-unix"] },
{ "name": "client-unix-static-debug", "inherits": ["clang","static","debug","role-client", "platform-unix"] },
{ "name": "client-unix-static-release", "inherits": ["clang","static","release","role-client", "platform-unix"] },
{ "name": "client-unix-shared-debug", "inherits": ["clang","shared","debug","role-client", "platform-unix"] },
{ "name": "client-unix-shared-release", "inherits": ["clang","shared","release","role-client", "platform-unix"] },
{ "name": "ci-strict-unix-static-debug", "inherits": ["clang","static","debug","role-ci-strict", "platform-unix"], "cacheVariables": { "CMAKE_DEBUG_POSTFIX": "_d_static" } },
{ "name": "ci-strict-unix-static-release", "inherits": ["clang","static","release","role-ci-strict", "platform-unix"], "cacheVariables": { "CMAKE_RELEASE_POSTFIX": "_static" } },
{ "name": "ci-strict-unix-shared-debug", "inherits": ["clang","shared","debug","role-ci-strict", "platform-unix"], "cacheVariables": { "CMAKE_DEBUG_POSTFIX": "_d" } },
{ "name": "ci-strict-unix-shared-release", "inherits": ["clang","shared","release","role-ci-strict", "platform-unix"] },
{ "name": "ci-coverage-unix", "inherits": ["static","debug","coverage", "platform-unix"] },
{ "name": "ci-static-unix-static-debug", "inherits": ["clang","static","debug","role-ci-static", "platform-unix"] },
{ "name": "ci-static-unix-static-release", "inherits": ["clang","static","release","role-ci-static", "platform-unix"] },
{ "name": "ci-static-unix-shared-debug", "inherits": ["clang","shared","debug","role-ci-static", "platform-unix"] },
{ "name": "ci-static-unix-shared-release", "inherits": ["clang","shared","release","role-ci-static", "platform-unix"] },
{ "name": "ci-abi-check-unix-shared-debug", "inherits": ["shared","debug","abi-check", "platform-unix"], "cacheVariables": { "CMAKE_DEBUG_POSTFIX": "_d" } },
{ "name": "ci-codeql-unix-debug", "inherits": ["clang","static","debug","codeql", "platform-unix"] },
{ "name": "ci-doxygen-unix", "inherits": ["clang","static","release","doxygen", "platform-unix"] },
{ "name": "ci-license-check-unix", "inherits": ["clang","static","release", "platform-unix"], "cacheVariables": { "AIDE_CHECK_LICENSES_AVAILABILITY": "ON" } },
{ "name": "ci-deploy-unix-shared-release", "inherits": ["clang","shared","release", "test-on-ci", "platform-unix"], "cacheVariables": { "aide_PACKAGING_MAINTAINER_MODE": "ON" } },
{ "name": "dev-windows-static", "inherits": ["static","role-dev", "platform-windows"] },
{ "name": "dev-windows-shared", "inherits": ["shared","role-dev", "platform-windows"] },
{ "name": "client-windows-static", "inherits": ["static","role-client", "platform-windows"] },
{ "name": "client-windows-shared", "inherits": ["shared","role-client", "platform-windows"] },
{ "name": "ci-strict-windows-static-debug", "inherits": ["static","debug","role-ci-strict", "platform-windows-ci"] },
{ "name": "ci-strict-windows-static-release", "inherits": ["static","release","role-ci-strict", "platform-windows-ci"] },
{ "name": "ci-strict-windows-shared-debug", "inherits": ["shared","debug","role-ci-strict", "platform-windows-ci"] },
{ "name": "ci-strict-windows-shared-release", "inherits": ["shared","release","role-ci-strict", "platform-windows-ci"] }
],
"buildPresets": [
{ "name": "build-dev-unix-static-debug", "configurePreset": "dev-unix-static-debug", "jobs": 0 },
{ "name": "build-dev-unix-static-release", "configurePreset": "dev-unix-static-release", "jobs": 0 },
{ "name": "build-dev-unix-shared-debug", "configurePreset": "dev-unix-shared-debug", "jobs": 0 },
{ "name": "build-dev-unix-shared-release", "configurePreset": "dev-unix-shared-release", "jobs": 0 },
{ "name": "build-client-unix-static-debug", "configurePreset": "client-unix-static-debug", "jobs": 0 },
{ "name": "build-client-unix-static-release", "configurePreset": "client-unix-static-release", "jobs": 0 },
{ "name": "build-client-unix-shared-debug", "configurePreset": "client-unix-shared-debug", "jobs": 0 },
{ "name": "build-client-unix-shared-release", "configurePreset": "client-unix-shared-release", "jobs": 0 },
{ "name": "build-ci-strict-unix-static-debug", "configurePreset": "ci-strict-unix-static-debug", "jobs": 0 },
{ "name": "build-ci-strict-unix-static-release", "configurePreset": "ci-strict-unix-static-release", "jobs": 0 },
{ "name": "build-ci-strict-unix-shared-debug", "configurePreset": "ci-strict-unix-shared-debug", "jobs": 0 },
{ "name": "build-ci-strict-unix-shared-release", "configurePreset": "ci-strict-unix-shared-release", "jobs": 0 },
{ "name": "build-ci-coverage-unix", "configurePreset": "ci-coverage-unix", "jobs": 0 },
{ "name": "build-ci-static-unix-static-debug", "configurePreset": "ci-static-unix-static-debug", "jobs": 0 },
{ "name": "build-ci-static-unix-static-release", "configurePreset": "ci-static-unix-static-release", "jobs": 0 },
{ "name": "build-ci-static-unix-shared-debug", "configurePreset": "ci-static-unix-shared-debug", "jobs": 0 },
{ "name": "build-ci-static-unix-shared-release", "configurePreset": "ci-static-unix-shared-release", "jobs": 0 },
{ "name": "build-ci-abi-check-unix-shared-debug", "configurePreset": "ci-abi-check-unix-shared-debug", "jobs": 0, "targets": ["generate_abi_compliance_report"] },
{ "name": "build-ci-codeql-unix-debug", "configurePreset": "ci-codeql-unix-debug", "jobs": 0 },
{ "name": "build-ci-doxygen-unix", "configurePreset": "ci-doxygen-unix", "jobs": 0, "targets": ["doxygen-docs"] },
{ "name": "build-ci-deploy-unix-shared-release", "configurePreset": "ci-deploy-unix-shared-release", "jobs": 0, "targets": ["package"] },
{ "name": "build-dev-windows-static-debug", "configurePreset": "dev-windows-static", "configuration": "Debug" },
{ "name": "build-dev-windows-shared-debug", "configurePreset": "dev-windows-shared", "configuration": "Debug" },
{ "name": "build-client-windows-static-debug", "configurePreset": "client-windows-static", "configuration": "Debug" },
{ "name": "build-client-windows-shared-debug", "configurePreset": "client-windows-shared", "configuration": "Debug" },
{ "name": "build-ci-strict-windows-static-debug", "configurePreset": "ci-strict-windows-static-debug" },
{ "name": "build-ci-strict-windows-shared-debug", "configurePreset": "ci-strict-windows-shared-debug" },
{ "name": "build-dev-windows-static-release", "configurePreset": "dev-windows-static", "configuration": "RelWithDebInfo" },
{ "name": "build-dev-windows-shared-release", "configurePreset": "dev-windows-shared", "configuration": "RelWithDebInfo" },
{ "name": "build-client-windows-static-release", "configurePreset": "client-windows-static", "configuration": "RelWithDebInfo" },
{ "name": "build-client-windows-shared-release", "configurePreset": "client-windows-shared", "configuration": "RelWithDebInfo" },
{ "name": "build-ci-strict-windows-static-release", "configurePreset": "ci-strict-windows-static-release" },
{ "name": "build-ci-strict-windows-shared-release", "configurePreset": "ci-strict-windows-shared-release" }
],
"testPresets": [
{
"name": "test-common",
"description": "Test CMake settings that apply to all configurations",
"hidden": true,
"output": {
"outputOnFailure": true
},
"execution": {
"noTestsAction": "error",
"stopOnFailure": true
}
},
{ "name": "test-dev-unix-static-debug", "inherits": "test-common", "configurePreset": "dev-unix-static-debug" },
{ "name": "test-dev-unix-static-release", "inherits": "test-common", "configurePreset": "dev-unix-static-release" },
{ "name": "test-dev-unix-shared-debug", "inherits": "test-common", "configurePreset": "dev-unix-shared-debug" },
{ "name": "test-dev-unix-shared-release", "inherits": "test-common", "configurePreset": "dev-unix-shared-release" },
{ "name": "test-client-unix-static-debug", "inherits": "test-common", "configurePreset": "client-unix-static-debug" },
{ "name": "test-client-unix-static-release", "inherits": "test-common", "configurePreset": "client-unix-static-release" },
{ "name": "test-client-unix-shared-debug", "inherits": "test-common", "configurePreset": "client-unix-shared-debug" },
{ "name": "test-client-unix-shared-release", "inherits": "test-common", "configurePreset": "client-unix-shared-release" },
{ "name": "test-ci-strict-unix-static-debug", "inherits": "test-common", "configurePreset": "ci-strict-unix-static-debug" },
{ "name": "test-ci-strict-unix-static-release", "inherits": "test-common", "configurePreset": "ci-strict-unix-static-release" },
{ "name": "test-ci-strict-unix-shared-debug", "inherits": "test-common", "configurePreset": "ci-strict-unix-shared-debug" },
{ "name": "test-ci-strict-unix-shared-release", "inherits": "test-common", "configurePreset": "ci-strict-unix-shared-release" },
{ "name": "test-ci-coverage-unix", "inherits": "test-common", "configurePreset": "ci-coverage-unix" },
{ "name": "test-ci-static-unix-static-debug", "inherits": "test-common", "configurePreset": "ci-static-unix-static-debug" },
{ "name": "test-ci-static-unix-static-release", "inherits": "test-common", "configurePreset": "ci-static-unix-static-release" },
{ "name": "test-ci-static-unix-shared-debug", "inherits": "test-common", "configurePreset": "ci-static-unix-shared-debug" },
{ "name": "test-ci-static-unix-shared-release", "inherits": "test-common", "configurePreset": "ci-static-unix-shared-release" },
{ "name": "test-dev-windows-static-debug", "inherits": "test-common", "configurePreset": "dev-windows-static", "configuration": "Debug" },
{ "name": "test-dev-windows-shared-debug", "inherits": "test-common", "configurePreset": "dev-windows-shared", "configuration": "Debug" },
{ "name": "test-client-windows-static-debug", "inherits": "test-common", "configurePreset": "client-windows-static", "configuration": "Debug" },
{ "name": "test-client-windows-shared-debug", "inherits": "test-common", "configurePreset": "client-windows-shared", "configuration": "Debug" },
{ "name": "test-ci-strict-windows-static-debug", "inherits": "test-common", "configurePreset": "ci-strict-windows-static-debug" },
{ "name": "test-ci-strict-windows-shared-debug", "inherits": "test-common", "configurePreset": "ci-strict-windows-shared-debug" },
{ "name": "test-dev-windows-static-release", "inherits": "test-common", "configurePreset": "dev-windows-static", "configuration": "RelWithDebInfo" },
{ "name": "test-dev-windows-shared-release", "inherits": "test-common", "configurePreset": "dev-windows-shared", "configuration": "RelWithDebInfo" },
{ "name": "test-client-windows-static-release", "inherits": "test-common", "configurePreset": "client-windows-static", "configuration": "RelWithDebInfo" },
{ "name": "test-client-windows-shared-release", "inherits": "test-common", "configurePreset": "client-windows-shared", "configuration": "RelWithDebInfo" },
{ "name": "test-ci-strict-windows-static-release", "inherits": "test-common", "configurePreset": "ci-strict-windows-static-release" },
{ "name": "test-ci-strict-windows-shared-release", "inherits": "test-common", "configurePreset": "ci-strict-windows-shared-release" }
],
"workflowPresets": [
{
"name": "workflow-dev-unix-static-debug",
"steps": [
{ "type": "configure", "name": "dev-unix-static-debug" },
{ "type": "build", "name": "build-dev-unix-static-debug" },
{ "type": "test", "name": "test-dev-unix-static-debug" }
]
},
{
"name": "workflow-dev-unix-static-release",
"steps": [
{ "type": "configure", "name": "dev-unix-static-release" },
{ "type": "build", "name": "build-dev-unix-static-release" },
{ "type": "test", "name": "test-dev-unix-static-release" }
]
},
{
"name": "workflow-dev-unix-shared-debug",
"steps": [
{ "type": "configure", "name": "dev-unix-shared-debug" },
{ "type": "build", "name": "build-dev-unix-shared-debug" },
{ "type": "test", "name": "test-dev-unix-shared-debug" }
]
},
{
"name": "workflow-dev-unix-shared-release",
"steps": [
{ "type": "configure", "name": "dev-unix-shared-release" },
{ "type": "build", "name": "build-dev-unix-shared-release" },
{ "type": "test", "name": "test-dev-unix-shared-release" }
]
},
{
"name": "workflow-client-unix-static-debug",
"steps": [
{ "type": "configure", "name": "client-unix-static-debug" },
{ "type": "build", "name": "build-client-unix-static-debug" },
{ "type": "test", "name": "test-client-unix-static-debug" }
]
},
{
"name": "workflow-client-unix-static-release",
"steps": [
{ "type": "configure", "name": "client-unix-static-release" },
{ "type": "build", "name": "build-client-unix-static-release" },
{ "type": "test", "name": "test-client-unix-static-release" }
]
},
{
"name": "workflow-client-unix-shared-debug",
"steps": [
{ "type": "configure", "name": "client-unix-shared-debug" },
{ "type": "build", "name": "build-client-unix-shared-debug" },
{ "type": "test", "name": "test-client-unix-shared-debug" }
]
},
{
"name": "workflow-client-unix-shared-release",
"steps": [
{ "type": "configure", "name": "client-unix-shared-release" },
{ "type": "build", "name": "build-client-unix-shared-release" },
{ "type": "test", "name": "test-client-unix-shared-release" }
]
},
{
"name": "workflow-ci-static-unix-static-debug",
"steps": [
{ "type": "configure", "name": "ci-static-unix-static-debug" },
{ "type": "build", "name": "build-ci-static-unix-static-debug" },
{ "type": "test", "name": "test-ci-static-unix-static-debug" }
]
},
{
"name": "workflow-ci-static-unix-static-release",
"steps": [
{ "type": "configure", "name": "ci-static-unix-static-release" },
{ "type": "build", "name": "build-ci-static-unix-static-release" },
{ "type": "test", "name": "test-ci-static-unix-static-release" }
]
},
{
"name": "workflow-ci-static-unix-shared-debug",
"steps": [
{ "type": "configure", "name": "ci-static-unix-shared-debug" },
{ "type": "build", "name": "build-ci-static-unix-shared-debug" },
{ "type": "test", "name": "test-ci-static-unix-shared-debug" }
]
},
{
"name": "workflow-ci-static-unix-shared-release",
"steps": [
{ "type": "configure", "name": "ci-static-unix-shared-release" },
{ "type": "build", "name": "build-ci-static-unix-shared-release" },
{ "type": "test", "name": "test-ci-static-unix-shared-release" }
]
},
{
"name": "workflow-ci-strict-unix-static-debug",
"steps": [
{ "type": "configure", "name": "ci-strict-unix-static-debug" },
{ "type": "build", "name": "build-ci-strict-unix-static-debug" },
{ "type": "test", "name": "test-ci-strict-unix-static-debug" }
]
},
{
"name": "workflow-ci-strict-unix-static-release",
"steps": [
{ "type": "configure", "name": "ci-strict-unix-static-release" },
{ "type": "build", "name": "build-ci-strict-unix-static-release" },
{ "type": "test", "name": "test-ci-strict-unix-static-release" }
]
},
{
"name": "workflow-ci-strict-unix-shared-debug",
"steps": [
{ "type": "configure", "name": "ci-strict-unix-shared-debug" },
{ "type": "build", "name": "build-ci-strict-unix-shared-debug" },
{ "type": "test", "name": "test-ci-strict-unix-shared-debug" }
]
},
{
"name": "workflow-ci-strict-unix-shared-release",
"steps": [
{ "type": "configure", "name": "ci-strict-unix-shared-release" },
{ "type": "build", "name": "build-ci-strict-unix-shared-release" },
{ "type": "test", "name": "test-ci-strict-unix-shared-release" }
]
},
{
"name": "workflow-ci-strict-windows-static-debug",
"steps": [
{ "type": "configure", "name": "ci-strict-windows-static-debug" },
{ "type": "build", "name": "build-ci-strict-windows-static-debug" },
{ "type": "test", "name": "test-ci-strict-windows-static-debug" }
]
},
{
"name": "workflow-ci-strict-windows-static-release",
"steps": [
{ "type": "configure", "name": "ci-strict-windows-static-release" },
{ "type": "build", "name": "build-ci-strict-windows-static-release" },
{ "type": "test", "name": "test-ci-strict-windows-static-release" }
]
},
{
"name": "workflow-ci-strict-windows-shared-debug",
"steps": [
{ "type": "configure", "name": "ci-strict-windows-shared-debug" },
{ "type": "build", "name": "build-ci-strict-windows-shared-debug" },
{ "type": "test", "name": "test-ci-strict-windows-shared-debug" }
]
},
{
"name": "workflow-ci-strict-windows-shared-release",
"steps": [
{ "type": "configure", "name": "ci-strict-windows-shared-release" },
{ "type": "build", "name": "build-ci-strict-windows-shared-release" },
{ "type": "test", "name": "test-ci-strict-windows-shared-release" }
]
},
{
"name": "workflow-ci-coverage-unix",
"steps": [
{ "type": "configure", "name": "ci-coverage-unix" },
{ "type": "build", "name": "build-ci-coverage-unix" },
{ "type": "test", "name": "test-ci-coverage-unix" }
]
},
{
"name": "workflow-ci-abi-check-unix-shared-debug",
"steps": [
{ "type": "configure", "name": "ci-abi-check-unix-shared-debug" },
{ "type": "build", "name": "build-ci-abi-check-unix-shared-debug" }
]
},
{
"name": "workflow-ci-codeql-unix-debug",
"steps": [
{ "type": "configure", "name": "ci-codeql-unix-debug" },
{ "type": "build", "name": "build-ci-codeql-unix-debug" }
]
},
{
"name": "workflow-ci-doxygen-unix",
"steps": [
{ "type": "configure", "name": "ci-doxygen-unix" },
{ "type": "build", "name": "build-ci-doxygen-unix" }
]
},
{
"name": "workflow-ci-license-check-unix",
"steps": [
{ "type": "configure", "name": "ci-license-check-unix" }
]
},
{
"name": "workflow-ci-deploy-unix-shared-release",
"steps": [
{ "type": "configure", "name": "ci-deploy-unix-shared-release" },
{ "type": "build", "name": "build-ci-deploy-unix-shared-release" }
]
}
]
}