mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Silent TD warnings when there is no td_results.json (#142083)
Despite the fact that we have `continue-on-error: true` there, GH behaves noisily when `td_results.json` doesn't exist. For example, all benchmark jobs in https://github.com/pytorch/pytorch/actions/runs/12149624686 finished successfully but they all showed up as errors on GH UI. To make this worst, log classifier sometimes pick up the error https://github.com/pytorch/pytorch/actions/runs/12149624686/job/33882285001#step:16:37 Pull Request resolved: https://github.com/pytorch/pytorch/pull/142083 Approved by: https://github.com/clee2000
This commit is contained in:
@ -26,4 +26,4 @@ runs:
|
||||
shell: bash
|
||||
run: |
|
||||
mkdir -p .additional_ci_files
|
||||
mv td_results.json .additional_ci_files/td_results.json
|
||||
mv td_results.json .additional_ci_files/td_results.json || true
|
||||
|
Reference in New Issue
Block a user