mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-04-04 03:01:05 +02:00
feat: failed evaluation mark the evaluation job as failed
This commit is contained in:
parent
4b3678e8b7
commit
f6ae209c17
1 changed files with 7 additions and 2 deletions
|
@ -111,20 +111,25 @@ class NixEvalCommand(buildstep.ShellMixin, steps.BuildStep):
|
||||||
|
|
||||||
# if the command passes extract the list of stages
|
# if the command passes extract the list of stages
|
||||||
result = cmd.results()
|
result = cmd.results()
|
||||||
|
failures = 0
|
||||||
if result == util.SUCCESS:
|
if result == util.SUCCESS:
|
||||||
# create a ShellCommand for each stage and add them to the build
|
# create a ShellCommand for each stage and add them to the build
|
||||||
jobs = []
|
jobs = []
|
||||||
|
|
||||||
for line in self.observer.getStdout().split("\n"):
|
for line in self.observer.getStdout().split("\n"):
|
||||||
if line != "":
|
if line != "":
|
||||||
job = json.loads(line)
|
job = json.loads(line)
|
||||||
if "error" not in job.keys():
|
if "error" not in job.keys():
|
||||||
jobs.append(job)
|
jobs.append(job)
|
||||||
|
else:
|
||||||
|
failures +=1
|
||||||
self.build.addStepsAfterCurrentStep(
|
self.build.addStepsAfterCurrentStep(
|
||||||
[BuildTrigger(scheduler="nix-build", name="nix-build", jobs=jobs)]
|
[BuildTrigger(scheduler="nix-build", name="nix-build", jobs=jobs)]
|
||||||
)
|
)
|
||||||
|
|
||||||
return result
|
if failures > 0:
|
||||||
|
return util.FAILURE
|
||||||
|
else:
|
||||||
|
return result
|
||||||
|
|
||||||
|
|
||||||
class RetryCounter:
|
class RetryCounter:
|
||||||
|
|
Loading…
Add table
Reference in a new issue