-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
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 <webknjaz@redhat.com>
115b8e3
to
219e287
Compare
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
@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 65d2c51c10425dcfacc0a13810d58c41240d7ff9) Co-authored-by: 🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко) <wk.cvs.github@sydorenko.org.ua> Co-authored-by: Sviatoslav Sydorenko <webknjaz@redhat.com> Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
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 (Святослав Сидоренко) <wk.cvs.github@sydorenko.org.ua> Co-authored-by: Sviatoslav Sydorenko <webknjaz@redhat.com> Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
I'd suggest reverting partially if needed, but the job grouping and generalization are good to keep. |
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: