-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
GH-111758: Merge TSan and UBSan reusable GHA workflows #136820
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GH-111758: Merge TSan and UBSan reusable GHA workflows #136820
Conversation
.github/workflows/reusable-ubsan.yml
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note
Prior to this PR, this workflow wasn't contributing to the branch protection status. Once it's merged, it'll fail the PRs if something crashes.
.github/workflows/reusable-san.yml
Outdated
build-tsan-reusable: | ||
name: 'Thread sanitizer' | ||
build-san-reusable: | ||
name: ${{ inputs.sanitizer }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Per discussion w/ Hugo, this needs to mention the FT flag.
8592567
to
115b8e3
Compare
Co-Authored-By: Sviatoslav Sydorenko <[email protected]>
115b8e3
to
219e287
Compare
Co-authored-by: Hugo van Kemenade <[email protected]>
@hugovk I think this needs backport labels to keep the CI in other branches close. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
…H-136820) (cherry picked from commit 65d2c51) Co-authored-by: 🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко) <[email protected]> Co-authored-by: Sviatoslav Sydorenko <[email protected]> Co-authored-by: Hugo van Kemenade <[email protected]>
Sorry, @webknjaz and @hugovk, I could not cleanly backport this to
|
GH-136883 is a backport of this pull request to the 3.14 branch. |
) (#136883) Co-authored-by: 🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко) <[email protected]> Co-authored-by: Sviatoslav Sydorenko <[email protected]> Co-authored-by: Hugo van Kemenade <[email protected]>
I'd suggest reverting partially if needed, but the job grouping and generalization are good to keep. |
…ython#136820) (cherry picked from commit 65d2c51) Co-authored-by: Hugo van Kemenade <[email protected]> Co-authored-by: Sviatoslav Sydorenko <[email protected]>
…ython#136820) (cherry picked from commit 65d2c51) Co-authored-by: Hugo van Kemenade <[email protected]> Co-authored-by: Sviatoslav Sydorenko <[email protected]>
GH-137029 is a backport of this pull request to the 3.13 branch. |
This patch deduplicates the contents of
reusable-tsan.yml
andreusable-ubsan.yml
, making them one. The new workflow replaces the duplicated ones in the top-levelbuild.yml
and are called with different sanitizer parameters.It is based on Hugo's patch. Context: