fix: wrong syntax to hide step

This commit is contained in:
Luj 2023-03-10 23:42:59 +01:00
parent db3b7df775
commit 85588c63ef

View file

@ -233,7 +233,7 @@ def nix_update_flake_config(
) )
) )
factory.addStep(SetProperty(property="GitFailed", value="failed", doStepIf=(lambda step: step.build.results == FAILURE))) factory.addStep(SetProperty(property="GitFailed", value="failed", hideStepIf=True, doStepIf=(lambda step: step.build.results == FAILURE)))
factory.addStep( factory.addStep(
steps.Git( steps.Git(
@ -245,7 +245,7 @@ def nix_update_flake_config(
mode="full", mode="full",
branch="main", branch="main",
doStepIf=failure, doStepIf=failure,
hideStepIf=lambda x: not(failure(x)) hideStepIf=lambda _, x: not(failure(x))
) )
) )
factory.addStep(steps.ShellCommand( factory.addStep(steps.ShellCommand(
@ -258,7 +258,7 @@ def nix_update_flake_config(
], ],
haltOnFailure=True, haltOnFailure=True,
doStepIf=failure, doStepIf=failure,
hideStepIf=lambda x: not(failure(x)) hideStepIf=lambda _, x: not(failure(x))
) )
) )