Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/17256
Note: Links to docs will display an error until the docs builds have been completed. ❌ 3 New Failures, 1 Cancelled Job, 4 Unrelated FailuresAs of commit d5952b6 with merge base fb59a47 ( NEW FAILURES - The following jobs have failed:
CANCELLED JOB - The following job was cancelled. Please retry:
FLAKY - The following job failed but was likely due to flakiness present on trunk:
BROKEN TRUNK - The following jobs failed but was present on the merge base:👉 Rebase onto the `viable/strict` branch to avoid these failures
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
This PR needs a
|
There was a problem hiding this comment.
Pull request overview
This pull request updates GitHub Actions workflow configurations to align with the repository's standard practice of canceling in-progress CI runs when new commits are pushed. The changes affect the CUDA and Metal test workflows, enabling automatic cancellation of outdated runs to improve CI efficiency and reduce resource consumption.
Changes:
- Updated
cancel-in-progressfromfalsetotruein.github/workflows/cuda.yml - Updated
cancel-in-progressfromfalsetotruein.github/workflows/metal.yml
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/cuda.yml | Enables cancellation of in-progress CUDA test workflow runs when new commits are pushed |
| .github/workflows/metal.yml | Enables cancellation of in-progress Metal test workflow runs when new commits are pushed |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This pull request updates the GitHub Actions workflow configurations to improve CI efficiency by ensuring that only the latest workflow run is active for both CUDA and Metal builds. The main change is enabling the cancellation of in-progress runs when new ones are triggered for the same concurrency group.
Workflow configuration improvements:
cancel-in-progress: truein theconcurrencysection of.github/workflows/cuda.ymlto automatically cancel previous CUDA workflow runs when a new one is started.cancel-in-progress: truein theconcurrencysection of.github/workflows/metal.ymlto automatically cancel previous Metal workflow runs when a new one is started.