Skip to content

Commit

Permalink
Build release builds with debug info
Browse files Browse the repository at this point in the history
It is not possible to get anything sensible out of core dumps that do
not contain debug info, so make sure that release builds are built with
debug information by using `RelWithDebInfo`.
  • Loading branch information
mkindahl committed Mar 14, 2024
1 parent 95c7d48 commit b28c8b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/gh_matrix_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def build_release_config(overrides):
release_config = dict(
{
"name": "Release",
"build_type": "Release",
"build_type": "RelWithDebInfo",
"tsdb_build_args": "-DWARNINGS_AS_ERRORS=ON -DREQUIRE_ALL_TESTS=ON",
"coverage": False,
}
Expand Down Expand Up @@ -120,7 +120,7 @@ def build_apache_config(overrides):
apache_config = dict(
{
"name": "ApacheOnly",
"build_type": "Release",
"build_type": "RelWithDebInfo",
"tsdb_build_args": "-DWARNINGS_AS_ERRORS=ON -DREQUIRE_ALL_TESTS=ON -DAPACHE_ONLY=1",
"coverage": False,
}
Expand Down

0 comments on commit b28c8b3

Please sign in to comment.