Skip to content

Commit

Permalink
ci-staging: fully remove ci-linux and ci-windows presets
Browse files Browse the repository at this point in the history
  • Loading branch information
VDanielEdwards committed Jul 22, 2024
1 parent 35233e5 commit 418936f
Showing 1 changed file with 1 addition and 102 deletions.
103 changes: 1 addition & 102 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,82 +4,9 @@

{
"name": "ci",
"inherits": [ "mixin-ninja", "mixin-release", "mixin-werror" ]
"inherits": [ "mixin-ninja", "mixin-relwithdebinfo", "mixin-werror" ]
},

{
"name": "ci-linux",
"inherits": [ "mixin-ninja", "mixin-release", "mixin-werror", "mixin-ci-dirs", "mixin-ci-only-linux", "mixin-ci-linux-fast" ]
},

{
"name": "ci-windows",
"inherits": [ "mixin-ninja", "mixin-release", "mixin-werror", "mixin-ci-dirs", "mixin-ci-only-windows", "mixin-ci-msvc-fast" ]
},




{
"name": "mixin-ci-dirs",
"hidden": true,
"binaryDir": "$env{SIL_KIT_CI_CMAKE_BINARY_DIR}",
"installDir": "$env{SIL_KIT_CI_CMAKE_INSTALL_DIR}",
"cacheVariables": {
"CPACK_PACKAGE_DIRECTORY": "$env{SIL_KIT_CI_CMAKE_PACKAGE_DIR}"
}
},

{
"name": "mixin-ci-only-linux",
"hidden": true,
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
}
},

{
"name": "mixin-ci-only-windows",
"hidden": true,
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},

{
"name": "mixin-ci-msvc-fast",
"hidden": true,
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
},
"cacheVariables": {
"CMAKE_C_FLAGS_RELEASE": "/Od",
"CMAKE_CXX_FLAGS_RELEASE": "/Od"
}
},

{
"name": "mixin-ci-linux-fast",
"hidden": true,
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
},
"cacheVariables": {
"CMAKE_C_FLAGS_RELEASE": "-g0 -O0",
"CMAKE_CXX_FLAGS_RELEASE": "-g0 -O0"
}
},




{
"name": "base-env",
Expand Down Expand Up @@ -690,20 +617,6 @@
],
"buildPresets": [

{
"name": "ci-linux",
"configurePreset": "ci-linux"
},

{
"name": "ci-windows",
"configurePreset": "ci-windows"
},





{
"name": "linux-base",
"hidden": true,
Expand Down Expand Up @@ -920,20 +833,6 @@

"testPresets": [

{
"name": "ci-linux",
"configurePreset": "ci-linux"
},

{
"name": "ci-windows",
"configurePreset": "ci-windows"
},





{
"name": "linux-base",
"hidden": true,
Expand Down

0 comments on commit 418936f

Please sign in to comment.