chore: rename reldebug preset to more appropriate relwithassert (#13657)

This commit is contained in:
Sebastian Ullrich 2026-05-06 15:27:53 +02:00 committed by GitHub
parent 8d2b5d08a1
commit e3eb9aa832
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 8 deletions

View file

@ -311,11 +311,11 @@ jobs:
"CMAKE_OPTIONS": "-DLEAN_EXTRA_CXX_FLAGS=-Werror -DUSE_LAKE_CACHE=ON",
},
{
"name": "Linux Reldebug",
"name": "Linux RelWithAssert",
"os": "ubuntu-latest",
"enabled": level >= 2,
"test": true,
"CMAKE_PRESET": "reldebug",
"CMAKE_PRESET": "relwithassert",
// * `elab_bench/big_do` crashes with exit code 134
// * `compile_bench/channel` randomly segfaults
"CTEST_OPTIONS": "-E 'elab_bench/big_do|compile_bench/channel'",

View file

@ -33,14 +33,14 @@
"binaryDir": "${sourceDir}/build/debug"
},
{
"name": "reldebug",
"name": "relwithassert",
"displayName": "Release with assertions enabled",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithAssert",
"STRIP_BINARIES": "OFF"
},
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/build/reldebug"
"binaryDir": "${sourceDir}/build/relwithassert"
},
{
"name": "sanitize",
@ -79,8 +79,8 @@
"configurePreset": "debug"
},
{
"name": "reldebug",
"configurePreset": "reldebug"
"name": "relwithassert",
"configurePreset": "relwithassert"
},
{
"name": "sanitize",
@ -108,8 +108,8 @@
"inherits": "release"
},
{
"name": "reldebug",
"configurePreset": "reldebug",
"name": "relwithassert",
"configurePreset": "relwithassert",
"inherits": "release"
},
{