2021-12-16 19:29:48 +00:00
|
|
|
{
|
2022-11-07 08:12:35 +00:00
|
|
|
"version": 3,
|
|
|
|
"cmakeMinimumRequired": {
|
|
|
|
"major": 3,
|
|
|
|
"minor": 14,
|
|
|
|
"patch": 0
|
2022-01-01 09:38:45 +00:00
|
|
|
},
|
2022-11-07 08:12:35 +00:00
|
|
|
"configurePresets": [
|
|
|
|
{
|
|
|
|
"name": "default",
|
|
|
|
"displayName": "Default configure step",
|
|
|
|
"description": "Use 'build' dir and Unix makefiles",
|
|
|
|
"binaryDir": "${sourceDir}/build",
|
|
|
|
"generator": "Unix Makefiles"
|
2022-01-05 09:06:34 +00:00
|
|
|
},
|
2022-11-07 08:12:35 +00:00
|
|
|
{
|
2024-01-20 23:19:31 +00:00
|
|
|
"name": "ci-ubuntu-22.04",
|
2022-11-07 08:12:35 +00:00
|
|
|
"displayName": "CI configure step for Ubuntu",
|
|
|
|
"description": "Same as default, Used in GitHub actions workflow",
|
|
|
|
"inherits": "default"
|
|
|
|
},
|
|
|
|
{
|
2024-01-30 03:45:50 +00:00
|
|
|
"name": "ci-macos-13",
|
2022-11-07 08:12:35 +00:00
|
|
|
"displayName": "CI configure step for MacOS",
|
|
|
|
"description": "Same as default, Used in GitHub actions workflow",
|
2022-12-28 21:58:53 +00:00
|
|
|
"inherits": "default"
|
2022-11-07 08:12:35 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "ci-windows-2022",
|
|
|
|
"displayName": "CI configure step for Windows",
|
|
|
|
"description": "Set architecture to 64-bit (b/c RakNet)",
|
|
|
|
"inherits": "default",
|
|
|
|
"generator": "Visual Studio 17 2022",
|
|
|
|
"architecture": {
|
|
|
|
"value": "x64"
|
|
|
|
},
|
|
|
|
"cacheVariables": {
|
|
|
|
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "windows-default",
|
|
|
|
"inherits": "ci-windows-2022",
|
|
|
|
"displayName": "Windows only Configure Settings",
|
|
|
|
"description": "Sets build and install directories",
|
|
|
|
"generator": "Ninja",
|
|
|
|
"architecture": {
|
|
|
|
"value": "x64",
|
|
|
|
"strategy": "external"
|
|
|
|
}
|
2022-01-01 09:38:45 +00:00
|
|
|
}
|
2022-11-07 08:12:35 +00:00
|
|
|
],
|
|
|
|
"buildPresets": [
|
|
|
|
{
|
|
|
|
"name": "default",
|
|
|
|
"configurePreset": "default",
|
|
|
|
"displayName": "Default Build",
|
|
|
|
"description": "Default Build",
|
2022-01-05 09:06:34 +00:00
|
|
|
"jobs": 2
|
|
|
|
},
|
2022-11-07 08:12:35 +00:00
|
|
|
{
|
|
|
|
"name": "ci-windows-2022",
|
|
|
|
"configurePreset": "ci-windows-2022",
|
|
|
|
"displayName": "Windows CI Build",
|
|
|
|
"description": "This preset is used by the CI build on windows",
|
|
|
|
"configuration": "RelWithDebInfo",
|
2022-07-16 21:55:54 +00:00
|
|
|
"jobs": 2
|
|
|
|
},
|
2022-11-07 08:12:35 +00:00
|
|
|
{
|
2024-01-20 23:19:31 +00:00
|
|
|
"name": "ci-ubuntu-22.04",
|
|
|
|
"configurePreset": "ci-ubuntu-22.04",
|
2022-11-07 08:12:35 +00:00
|
|
|
"displayName": "Linux CI Build",
|
|
|
|
"description": "This preset is used by the CI build on linux",
|
|
|
|
"jobs": 2
|
|
|
|
},
|
|
|
|
{
|
2024-01-30 03:45:50 +00:00
|
|
|
"name": "ci-macos-13",
|
|
|
|
"configurePreset": "ci-macos-13",
|
2022-11-07 08:12:35 +00:00
|
|
|
"displayName": "MacOS CI Build",
|
|
|
|
"description": "This preset is used by the CI build on MacOS",
|
|
|
|
"jobs": 2
|
2022-07-16 21:55:54 +00:00
|
|
|
}
|
2022-11-07 08:12:35 +00:00
|
|
|
],
|
|
|
|
"testPresets": [
|
|
|
|
{
|
2024-01-20 23:19:31 +00:00
|
|
|
"name": "ci-ubuntu-22.04",
|
|
|
|
"configurePreset": "ci-ubuntu-22.04",
|
2022-11-07 08:12:35 +00:00
|
|
|
"displayName": "CI Tests on Linux",
|
|
|
|
"description": "Runs all tests on a linux configuration",
|
2022-09-06 03:28:47 +00:00
|
|
|
"execution": {
|
|
|
|
"jobs": 2
|
|
|
|
},
|
2022-11-07 08:12:35 +00:00
|
|
|
"output": {
|
|
|
|
"outputOnFailure": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2024-01-30 03:45:50 +00:00
|
|
|
"name": "ci-macos-13",
|
|
|
|
"configurePreset": "ci-macos-13",
|
2022-11-07 08:12:35 +00:00
|
|
|
"displayName": "CI Tests on MacOS",
|
|
|
|
"description": "Runs all tests on a Mac configuration",
|
|
|
|
"execution": {
|
|
|
|
"jobs": 2
|
|
|
|
},
|
|
|
|
"output": {
|
|
|
|
"outputOnFailure": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "ci-windows-2022",
|
|
|
|
"configurePreset": "ci-windows-2022",
|
|
|
|
"displayName": "CI Tests on windows",
|
|
|
|
"description": "Runs all tests on a windows configuration",
|
|
|
|
"configuration": "RelWithDebInfo",
|
|
|
|
"execution": {
|
|
|
|
"jobs": 2
|
|
|
|
},
|
|
|
|
"output": {
|
|
|
|
"outputOnFailure": true
|
|
|
|
},
|
2022-09-06 03:28:47 +00:00
|
|
|
"filter": {
|
|
|
|
"exclude": {
|
|
|
|
"name": "((example)|(minigzip))+"
|
|
|
|
}
|
2022-11-07 08:12:35 +00:00
|
|
|
}
|
2022-01-03 15:25:47 +00:00
|
|
|
}
|
2022-11-07 08:12:35 +00:00
|
|
|
]
|
|
|
|
}
|