Skip to content

Commit 2974d1c

Browse files
committed
(re-)schedule periodic jobs, even if build fails
1 parent c328f6e commit 2974d1c

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

‎buildbot_nix/buildbot_nix/nix_eval.py‎

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -862,10 +862,8 @@ def nix_eval_config( # noqa: PLR0913
862862
],
863863
flunkOnFailure=False, # Don't fail the build if schedule eval fails
864864
warnOnFailure=True,
865-
doStepIf=lambda c: (
866-
c.getProperty("branch", "") == project.default_branch
867-
and c.build.results in (util.SUCCESS, util.WARNINGS)
868-
),
865+
alwaysRun=True,
866+
doStepIf=lambda c: (c.getProperty("branch", "") == project.default_branch),
869867
hideStepIf=lambda results, _s: results == util.SKIPPED,
870868
logEnviron=False,
871869
)

0 commit comments

Comments
 (0)