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:
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
|
||||
|
||||
Reference in New Issue
Block a user