mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 05:27:19 +00:00
updated cmake workflows
This commit is contained in:
parent
db5c10c331
commit
9ce7d9043c
@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"version": 6,
|
"version": 7,
|
||||||
"cmakeMinimumRequired": {
|
"cmakeMinimumRequired": {
|
||||||
"major": 3,
|
"major": 3,
|
||||||
"minor": 25,
|
"minor": 27,
|
||||||
"patch": 0
|
"patch": 0
|
||||||
},
|
},
|
||||||
"configurePresets": [
|
"configurePresets": [
|
||||||
@ -13,6 +13,30 @@
|
|||||||
"binaryDir": "${sourceDir}/build",
|
"binaryDir": "${sourceDir}/build",
|
||||||
"generator": "Unix Makefiles"
|
"generator": "Unix Makefiles"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "debug-base",
|
||||||
|
"hidden": true,
|
||||||
|
"cacheVariables": {
|
||||||
|
"CMAKE_BUILD_TYPE": "Debug"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "release-base",
|
||||||
|
"hidden": true,
|
||||||
|
"cacheVariables": {
|
||||||
|
"CMAKE_BUILD_TYPE": "Release"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "clang-base",
|
||||||
|
"hidden": true,
|
||||||
|
"toolchainFile": "${sourceDir}/cmake/toolchains/linux-clang.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "gcc-base",
|
||||||
|
"hidden": true,
|
||||||
|
"toolchainFile": "${sourceDir}/cmake/toolchains/linux-gcc.cmake"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "ci-windows-2022",
|
"name": "ci-windows-2022",
|
||||||
"displayName": "CI configure step for Windows",
|
"displayName": "CI configure step for Windows",
|
||||||
@ -49,10 +73,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "linux-base",
|
"name": "linux-base",
|
||||||
"displayName": "x86_64-pc-linux-gnu",
|
|
||||||
"description": "Linux base configuration",
|
|
||||||
"hidden": true,
|
"hidden": true,
|
||||||
"binaryDir": "${sourceDir}/build",
|
|
||||||
"condition": {
|
"condition": {
|
||||||
"type": "equals",
|
"type": "equals",
|
||||||
"lhs": "${hostSystemName}",
|
"lhs": "${hostSystemName}",
|
||||||
@ -60,71 +81,71 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "linux-clang-debug",
|
"name": "macos-base",
|
||||||
"inherits": "linux-base",
|
"hidden": true,
|
||||||
"displayName": "[Debug] Linux (Clang)",
|
"condition": {
|
||||||
"description": "Create a debug build using the Clang toolchain for Linux",
|
"type": "equals",
|
||||||
"binaryDir": "${sourceDir}/build",
|
"lhs": "${hostSystemName}",
|
||||||
"toolchainFile": "${sourceDir}/cmake/toolchains/linux-clang.cmake",
|
"rhs": "Darwin"
|
||||||
"cacheVariables": {
|
|
||||||
"CMAKE_BUILD_TYPE": "Debug"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "linux-clang-debug",
|
||||||
|
"inherits": [
|
||||||
|
"linux-base",
|
||||||
|
"clang-base",
|
||||||
|
"debug-base"
|
||||||
|
],
|
||||||
|
"displayName": "[Debug] Linux (Clang)",
|
||||||
|
"description": "Create a debug build using the Clang toolchain for Linux"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "linux-clang-release",
|
"name": "linux-clang-release",
|
||||||
"inherits": "linux-clang-debug",
|
"inherits": [
|
||||||
|
"linux-base",
|
||||||
|
"clang-base",
|
||||||
|
"release-base"
|
||||||
|
],
|
||||||
"displayName": "[Release] Linux (Clang)",
|
"displayName": "[Release] Linux (Clang)",
|
||||||
"description": "Create a release build using the Clang toolchain for Linux",
|
"description": "Create a release build using the Clang toolchain for Linux"
|
||||||
"cacheVariables": {
|
|
||||||
"CMAKE_BUILD_TYPE": "Release"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "linux-gcc-debug",
|
"name": "linux-gcc-debug",
|
||||||
|
"inherits": [
|
||||||
|
"linux-base",
|
||||||
|
"gcc-base",
|
||||||
|
"debug-base"
|
||||||
|
],
|
||||||
"displayName": "[Debug] Linux (GCC)",
|
"displayName": "[Debug] Linux (GCC)",
|
||||||
"description": "Create a debug build using the GNU toolchain for Linux",
|
"description": "Create a debug build using the GNU toolchain for Linux"
|
||||||
"binaryDir": "${sourceDir}/build",
|
|
||||||
"toolchainFile": "${sourceDir}/cmake/toolchains/linux-gcc.cmake",
|
|
||||||
"cacheVariables": {
|
|
||||||
"CMAKE_BUILD_TYPE": "Debug"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "linux-gcc-release",
|
"name": "linux-gcc-release",
|
||||||
"inherits": "linux-gcc-debug",
|
"inherits": [
|
||||||
|
"linux-base",
|
||||||
|
"gcc-base",
|
||||||
|
"release-base"
|
||||||
|
],
|
||||||
"displayName": "[Release] Linux (GCC)",
|
"displayName": "[Release] Linux (GCC)",
|
||||||
"description": "Create a release build using the GNU toolchain for Linux",
|
"description": "Create a release build using the GNU toolchain for Linux"
|
||||||
"cacheVariables": {
|
|
||||||
"CMAKE_BUILD_TYPE": "Release"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "macos-appleclang-debug",
|
"name": "macos-debug",
|
||||||
"displayName": "[Debug] MacOS (AppleClang)",
|
"inherits": [
|
||||||
"description": "Same as default, Used in GitHub actions workflow",
|
"macos-base",
|
||||||
"inherits": "default",
|
"release-base"
|
||||||
"condition": {
|
],
|
||||||
"type": "equals",
|
"displayName": "[Debug] MacOS",
|
||||||
"lhs": "${hostSystemName}",
|
"description": "Create a debug build using MacOS"
|
||||||
"rhs": "Darwin"
|
|
||||||
},
|
|
||||||
"cacheVariables": {
|
|
||||||
"CMAKE_BUILD_TYPE": "Debug"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "macos-appleclang-release",
|
"name": "macos-release",
|
||||||
"displayName": "[Release] MacOS (AppleClang)",
|
"inherits": [
|
||||||
"description": "Same as default, Used in GitHub actions workflow",
|
"macos-base",
|
||||||
"inherits": "default",
|
"release-base"
|
||||||
"condition": {
|
],
|
||||||
"type": "equals",
|
"displayName": "[Release] MacOS",
|
||||||
"lhs": "${hostSystemName}",
|
"description": "Create a release build using MacOS"
|
||||||
"rhs": "Darwin"
|
|
||||||
},
|
|
||||||
"cacheVariables": {
|
|
||||||
"CMAKE_BUILD_TYPE": "Release"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"buildPresets": [
|
"buildPresets": [
|
||||||
@ -144,10 +165,50 @@
|
|||||||
"jobs": 2
|
"jobs": 2
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "debug-windows-2022",
|
"name": "linux-clang-debug",
|
||||||
"configurePreset": "ci-windows-2022",
|
"configurePreset": "linux-clang-debug",
|
||||||
"displayName": "Windows Debug Build",
|
"displayName": "[Debug] Linux (Clang)",
|
||||||
"description": "This preset is used to debug the build on windows",
|
"description": "This preset is used to build in debug mode using the Clang toolchain on Linux",
|
||||||
|
"configuration": "Debug",
|
||||||
|
"jobs": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linux-clang-release",
|
||||||
|
"configurePreset": "linux-clang-release",
|
||||||
|
"displayName": "[Release] Linux (Clang)",
|
||||||
|
"description": "This preset is used to build in release mode using the Clang toolchain on Linux",
|
||||||
|
"configuration": "Release",
|
||||||
|
"jobs": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linux-gcc-debug",
|
||||||
|
"configurePreset": "linux-gcc-debug",
|
||||||
|
"displayName": "[Debug] Linux (GCC)",
|
||||||
|
"description": "This preset is used to build in debug mode using the GCC toolchain on Linux",
|
||||||
|
"configuration": "Debug",
|
||||||
|
"jobs": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linux-gcc-release",
|
||||||
|
"configurePreset": "linux-gcc-release",
|
||||||
|
"displayName": "[Release] Linux (GCC)",
|
||||||
|
"description": "This preset is used to build in release mode using the GCC toolchain on Linux",
|
||||||
|
"configuration": "Release",
|
||||||
|
"jobs": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macos-debug",
|
||||||
|
"configurePreset": "macos-debug",
|
||||||
|
"displayName": "[Debug] MacOS",
|
||||||
|
"description": "This preset is used to build in debug mode on MacOS",
|
||||||
|
"configuration": "Debug",
|
||||||
|
"jobs": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macos-release",
|
||||||
|
"configurePreset": "macos-release",
|
||||||
|
"displayName": "[Release] MacOS",
|
||||||
|
"description": "This preset is used to build in release mode on MacOS",
|
||||||
"configuration": "Release",
|
"configuration": "Release",
|
||||||
"jobs": 2
|
"jobs": 2
|
||||||
}
|
}
|
||||||
@ -165,21 +226,64 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ci-windows-2022",
|
"name": "ci-windows-2022",
|
||||||
|
"inherits": "default",
|
||||||
"configurePreset": "ci-windows-2022",
|
"configurePreset": "ci-windows-2022",
|
||||||
"displayName": "CI Tests on windows",
|
"displayName": "CI Tests on windows",
|
||||||
"description": "Runs all tests on a windows configuration",
|
"description": "Runs all tests on a windows configuration",
|
||||||
"configuration": "Release",
|
"configuration": "Release",
|
||||||
"execution": {
|
|
||||||
"jobs": 2
|
|
||||||
},
|
|
||||||
"output": {
|
|
||||||
"outputOnFailure": true
|
|
||||||
},
|
|
||||||
"filter": {
|
"filter": {
|
||||||
"exclude": {
|
"exclude": {
|
||||||
"name": "((example)|(minigzip))+"
|
"name": "((example)|(minigzip))+"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linux-clang-debug",
|
||||||
|
"inherits": "default",
|
||||||
|
"configurePreset": "linux-clang-debug",
|
||||||
|
"displayName": "[Debug] Linux (Clang)",
|
||||||
|
"description": "Runs all tests on a Linux Clang configuration",
|
||||||
|
"configuration": "Release"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linux-clang-release",
|
||||||
|
"inherits": "default",
|
||||||
|
"configurePreset": "linux-clang-release",
|
||||||
|
"displayName": "[Release] Linux (Clang)",
|
||||||
|
"description": "Runs all tests on a Linux Clang configuration",
|
||||||
|
"configuration": "Release"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linux-gcc-debug",
|
||||||
|
"inherits": "default",
|
||||||
|
"configurePreset": "linux-gcc-debug",
|
||||||
|
"displayName": "[Debug] Linux (GCC)",
|
||||||
|
"description": "Runs all tests on a Linux GCC configuration",
|
||||||
|
"configuration": "Release"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linux-gcc-release",
|
||||||
|
"inherits": "default",
|
||||||
|
"configurePreset": "linux-gcc-release",
|
||||||
|
"displayName": "[Release] Linux (GCC)",
|
||||||
|
"description": "Runs all tests on a Linux GCC configuration",
|
||||||
|
"configuration": "Release"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macos-debug",
|
||||||
|
"inherits": "default",
|
||||||
|
"configurePreset": "macos-debug",
|
||||||
|
"displayName": "[Debug] MacOS",
|
||||||
|
"description": "Runs all tests on a MacOS configuration",
|
||||||
|
"configuration": "Release"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "macos-release",
|
||||||
|
"inherits": "default",
|
||||||
|
"configurePreset": "macos-release",
|
||||||
|
"displayName": "[Release] MacOS",
|
||||||
|
"description": "Runs all tests on a MacOS configuration",
|
||||||
|
"configuration": "Release"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"workflowPresets": [
|
"workflowPresets": [
|
||||||
@ -194,11 +298,11 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "build",
|
"type": "build",
|
||||||
"name": "default"
|
"name": "ci-windows-2022"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "test",
|
"type": "test",
|
||||||
"name": "default"
|
"name": "ci-windows-2022"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -213,11 +317,30 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "build",
|
"type": "build",
|
||||||
"name": "default"
|
"name": "linux-gcc-release"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "test",
|
"type": "test",
|
||||||
"name": "default"
|
"name": "linux-gcc-release"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "linux-clang-release",
|
||||||
|
"displayName": "Build using Clang on Linux",
|
||||||
|
"description": "Clang workflow preset for Linux",
|
||||||
|
"steps": [
|
||||||
|
{
|
||||||
|
"type": "configure",
|
||||||
|
"name": "linux-clang-release"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "build",
|
||||||
|
"name": "linux-clang-release"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "test",
|
||||||
|
"name": "linux-clang-release"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -228,15 +351,15 @@
|
|||||||
"steps": [
|
"steps": [
|
||||||
{
|
{
|
||||||
"type": "configure",
|
"type": "configure",
|
||||||
"name": "default"
|
"name": "macos-release"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "build",
|
"type": "build",
|
||||||
"name": "default"
|
"name": "macos-release"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "test",
|
"type": "test",
|
||||||
"name": "default"
|
"name": "macos-release"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user