mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 07:53:26 +00:00
Exclude known thirdparty/ ubsan errors
In my quest to make ubsan failures a build failure I've added all current ubsan errors by type to a new suppression file which we will then also use with CI. The idea is to only add known ubsan errors to this file, so this is not a blanket exclusion of thirdparty/ this means that if we get new or unexpected ubsan in thirdparty/ builds would fail.
This commit is contained in:
parent
7f5c469292
commit
70dbc311d1
2 changed files with 33 additions and 0 deletions
1
.github/workflows/linux_builds.yml
vendored
1
.github/workflows/linux_builds.yml
vendored
|
@ -10,6 +10,7 @@ env:
|
|||
DOTNET_NOLOGO: true
|
||||
DOTNET_CLI_TELEMETRY_OPTOUT: true
|
||||
TSAN_OPTIONS: suppressions=misc/error_suppressions/tsan.txt
|
||||
UBSAN_OPTIONS: suppressions=misc/error_suppressions/ubsan.txt
|
||||
|
||||
concurrency:
|
||||
group: ci-${{ github.actor }}-${{ github.head_ref || github.run_number }}-${{ github.ref }}-linux
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue