fix: wrong syntax to hide step

This commit is contained in:
Julien Malka 2023-03-10 23:42:59 +01:00
parent 67b391d33a
commit c387b4d84b
Signed by: Luj
GPG key ID: 6FC74C847011FD83

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))
) )
) )