-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Fix missing outputs for jobs with matrix #32823
Conversation
Can you add some tests? |
|
It is not easy to test because the function is part of the process of fetching tasks by act_runner. Right now we don't have a mechanism to test this. I would like to add a mechanism to test such functions after finishing the PRs I'm working on. |
I think |
Ah, yes, Only testing |
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.
Vote my LGTM ahead
Fix #32795
If a job uses a matrix, multiple
ActionRunJobs
may have the sameJobID
. We need to merge the outputs of these jobs to make them available to the jobs that need them.