-
Notifications
You must be signed in to change notification settings - Fork 637
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
Share workflow failure alerting between ci.yml and pkgci.yml. #19444
Merged
+103
−33
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This reverts commit babe0c3.
marbre
reviewed
Dec 10, 2024
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.
Looks pretty good but it's probably better to take a second look tomorrow 😪
This was referenced Dec 10, 2024
amd-chrissosa
approved these changes
Dec 11, 2024
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.
Nice this looks like a great refactor!
marbre
approved these changes
Dec 11, 2024
ScottTodd
added a commit
that referenced
this pull request
Dec 19, 2024
…9445) ## History These workflow jobs were originally part of `ci.yml` but they were moved out of part of #17957. ## Reasons to keep them separate * Run history for each workflow is independent, e.g. https://github.com/iree-org/iree/actions/workflows/ci_linux_x64_clang.yml and https://github.com/iree-org/iree/actions/workflows/ci_windows_x64_msvc.yml. * Performance metrics for each workflow are independent: ![image](https://github.com/user-attachments/assets/5832d491-541d-46e4-9626-422f989e8879) * Status badges are independent ## Reasons to merge them back * Less code duplication, particularly for `setup` and `summary` steps (see #19444) * Less noise in the checks view in pull requests (note all the `setup` jobs, and the PR above will add similarly dupliated `summary` jobs): ![image](https://github.com/user-attachments/assets/37628719-4d23-46f5-89ff-9da7f391695b) * Centralized logs for checks, not split between multiple pages like they are currently: Current | With this PR -- | -- ![image](https://github.com/user-attachments/assets/5adc117e-aa76-47a7-973f-6f1e7adcbc9c) | ![image](https://github.com/user-attachments/assets/2cb55430-63f5-4b1f-b64c-550b919fe51f) * This gives us a single `ci_summary` check in `ci.yml` to set as a required check instead of multiple split across workflows * Given enough runner capacity / budget, we could run all these jobs on presubmit/postsubmit and not just on nightly schedules
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Progress on #9305.
Changes included:
ci.yml
into a new reusable workflow in theworkflow_summary.yml
file.pkgci.yml
.summary
step toci_summary
andpkgci_summary
to disambiguate "required checks". You'd think GitHub would use keys that aren't ambiguous for required checks but nooooope: