re-add testPresets

This commit is contained in:
Jettford 2024-12-08 20:48:36 +00:00
parent 83e08f63bc
commit 10e64a5d20

View File

@ -12,7 +12,6 @@
"description": "Use 'build' dir and Unix makefiles", "description": "Use 'build' dir and Unix makefiles",
"binaryDir": "${sourceDir}/build", "binaryDir": "${sourceDir}/build",
"generator": "Unix Makefiles", "generator": "Unix Makefiles",
"hidden": true "hidden": true
}, },
{ {
@ -26,7 +25,6 @@
"lhs": "${hostSystemName}", "lhs": "${hostSystemName}",
"rhs": "Windows" "rhs": "Windows"
}, },
"hidden": true "hidden": true
}, },
{ {
@ -42,7 +40,6 @@
"description": "Create a build using Clang", "description": "Create a build using Clang",
"toolset": "ClangCL" "toolset": "ClangCL"
}, },
{ {
"name": "linux-default", "name": "linux-default",
"inherits": "default", "inherits": "default",
@ -56,18 +53,14 @@
{ {
"name": "linux-clang", "name": "linux-clang",
"inherits": "linux-default", "inherits": "linux-default",
"toolchainFile": "${sourceDir}/cmake/toolchains/linux-clang.cmake", "toolchainFile": "${sourceDir}/cmake/toolchains/linux-clang.cmake",
"displayName": "Linux (Clang)", "displayName": "Linux (Clang)",
"description": "Create a build using the Clang toolchain for Linux" "description": "Create a build using the Clang toolchain for Linux"
}, },
{ {
"name": "linux-gnu", "name": "linux-gnu",
"inherits": "linux-default", "inherits": "linux-default",
"toolchainFile": "${sourceDir}/cmake/toolchains/linux-gnu.cmake", "toolchainFile": "${sourceDir}/cmake/toolchains/linux-gnu.cmake",
"displayName": "Linux (GNU)", "displayName": "Linux (GNU)",
"description": "Create a build using the GNU toolchain for Linux" "description": "Create a build using the GNU toolchain for Linux"
}, },
@ -91,5 +84,108 @@
"description": "Default Build", "description": "Default Build",
"jobs": 2 "jobs": 2
} }
],
"testPresets": [
{
"name": "ci-ubuntu-22.04",
"configurePreset": "ci-ubuntu-22.04",
"displayName": "CI Tests on Linux",
"description": "Runs all tests on a linux configuration",
"execution": {
"jobs": 2
},
"output": {
"outputOnFailure": true
}
},
{
"name": "ci-macos-13",
"configurePreset": "ci-macos-13",
"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
},
"filter": {
"exclude": {
"name": "((example)|(minigzip))+"
}
}
}
],
"workflowPresets": [
{
"name": "ci-windows-2022",
"displayName": "[Release] Windows (MSVC)",
"description": "CI workflow preset for Windows",
"steps": [
{
"type": "configure",
"name": "windows-msvc"
},
{
"type": "build",
"name": "default"
},
{
"type": "test",
"name": "default"
}
]
},
{
"name": "ci-ubuntu-22.04",
"displayName": "[Release] Linux (GNU)",
"description": "CI workflow preset for Ubuntu",
"steps": [
{
"type": "configure",
"name": "linux-gnu"
},
{
"type": "build",
"name": "default"
},
{
"type": "test",
"name": "ci-ubuntu-22.04"
}
]
},
{
"name": "ci-macos-13",
"displayName": "[Release] MacOS",
"description": "CI workflow preset for MacOS",
"steps": [
{
"type": "configure",
"name": "macos"
},
{
"type": "build",
"name": "default"
},
{
"type": "test",
"name": "default"
}
]
}
] ]
} }