-
Notifications
You must be signed in to change notification settings - Fork 27.5k
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 prev_ci_results
#30313
Fix missing prev_ci_results
#30313
Conversation
|
||
# Upload complete failure tables, as they might be big and only truncated versions could be sent to Slack. | ||
- name: Failure table artifacts | ||
# Only the model testing job is concerned for this step | ||
if: ${{ inputs.job == 'run_tests_gpu' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: prev_ci_results | ||
path: prev_ci_results |
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.
need to be before the second actions/checkout@v4
below
uses: actions/upload-artifact@v4 | ||
with: | ||
name: prev_ci_results | ||
path: prev_ci_results | ||
|
||
- uses: actions/checkout@v4 |
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.
this is the killer
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
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.
LGTM ! Thanks for the fix !
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.
Thanks for fixing!
fix Co-authored-by: ydshieh <[email protected]>
fix Co-authored-by: ydshieh <[email protected]>
fix Co-authored-by: ydshieh <[email protected]>
fix Co-authored-by: ydshieh <[email protected]>
What does this PR do?
#29914 added a new step in slack report workflow, but it used
actions/checkout@v4
after the first part (about model CI job). This indeed removes all files in the same directory, so theactions/checkout@v4
created in the first part is moved, and the last step of uploading artifact can't find it. This makes thenew mdoel failures
missing in the slack report channel.