fast_fail = false + depends hangs if an upstream check fails
#1098
Unanswered
astei
asked this question in
Troubleshooting and Bug Reports
Replies: 1 comment
|
Thanks for the clear repro. I reproduced the hang on current I opened a draft fix in #1099. It treats failed steps as terminal for dependency scheduling when This comment was generated by Codex. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Minimal reproducer config:
This is an intentionally contrived example, but it demonstrates the bug very clearly. What I would expect is one of:
hkcontinues executing the rest of the checks, including dependents of a given check (my preference).hkcontinues to execute other steps but doesn't invoke steps that depend on the failing step.Instead,
hkhangs because it expects to execute theshould-passstep, butshould-passdepends onfailandhknever schedulesshould-passto run at all.All reactions