Replies: 2 comments
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
|
not a mystery “canceled right after green tests” and not ARC. the job ran into the GitHub-hosted ~6h wall, and the interesting part is what happened before that kill. from the public job log / API:
so the tests really did pass. the step just never finished after that - hung / stalled with zero further logs - until the hosted job limit killed the context ( your workflow has no do this first - fail faster + see where it sticks after ctest: jobs:
container:
runs-on: ubuntu-latest
timeout-minutes: 90 # or whatever budget you actually want; don’t wait for the silent 6h kill
container: linuxdeepin/deepin:crimsonand split the long if you need the full package build to keep going past 6h on hosted - you can’t on standard so: canceled cos the job hit ~6h while stuck silent after ctest, not cos the tests failed and not cos random infra yanked a healthy short job. |
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
ARC (Actions Runner Controller)
Discussion Details
GitHub Actions Ubuntu job is canceled after all tests pass
Our GitHub Actions Ubuntu CI job was canceled immediately after the test suite
completed successfully.
Job URL:
https://github.com/linuxdeepin/treeland/actions/runs/32841769589/job/97782647441
The final test output shows that all executed tests passed:
Immediately afterwards, the job ended with:
No test failure occurred before the cancellation. The disabled test is expected
and is unrelated to the cancellation.
Could you help determine why the GitHub Actions job was canceled after the
workflow steps had completed successfully? In particular, we would like to know
whether this was caused by GitHub Actions infrastructure, runner termination,
or workflow cancellation behavior.
All reactions