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:
Huy Do
2024-12-04 23:43:29 +00:00
committed by PyTorch MergeBot
parent 0318589e87
commit e6e75ebd0a

View File

@ -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