From 730f5ea304e2817809f820f36caa2d4c2c49397e Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 23 Nov 2020 18:24:21 +0000 Subject: [PATCH] steps/runconfig: Ensure build is marked as skipped Signed-off-by: Richard Purdie --- steps/runconfig.py | 1 + 1 file changed, 1 insertion(+) diff --git a/steps/runconfig.py b/steps/runconfig.py index aa7b858..fa639d6 100644 --- a/steps/runconfig.py +++ b/steps/runconfig.py @@ -211,6 +211,7 @@ class TargetPresent(shell.ShellCommand): rc = super().evaluateCommand(cmd) if rc != SUCCESS: self.descriptionDone = "Target not present in branch configuration" + self.build.results = SKIPPED # Run no further steps, terminate the build self.build.terminate = True return SKIPPED