Skip to content

Commit 4feeb5d

Browse files
drewdzzzalyapunov
authored andcommitted
CI: build release workflows with RelWithDebInfo type
Accidentally, release workflows are built with ReleaseWithDebInfo. This build type is not valid - that's why NDEBUG is not set, and all workflows are built in Debug mode actually. Let's fix this mistake.
1 parent 1df6d9f commit 4feeb5d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- macos-12
2121
build-type:
2222
- Debug
23-
- ReleaseWithDebInfo
23+
- RelWithDebInfo
2424
with:
2525
runs-on: ${{ matrix.runs-on }}
2626
build-type: ${{ matrix.runs-on }}
@@ -32,7 +32,7 @@ jobs:
3232
matrix:
3333
build-type:
3434
- Debug
35-
- ReleaseWithDebInfo
35+
- RelWithDebInfo
3636
with:
3737
runs-on: ubuntu-22.04
3838
build-type: ${{ matrix.build-type }}
@@ -48,7 +48,7 @@ jobs:
4848
- macos-12
4949
build-type:
5050
- Debug
51-
- ReleaseWithDebInfo
51+
- RelWithDebInfo
5252
with:
5353
runs-on: ${{ matrix.runs-on }}
5454
build-type: ${{ matrix.build-type }}

0 commit comments

Comments
 (0)