From c3bddde7dd6669cbf62bf9d27aec6f62a9d39ee3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 20 Dec 2018 23:12:37 +0100 Subject: [PATCH] fix success value of build objects sent to ghcmgr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski Signed-off-by: Igor Mandrigin --- ci/common.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/common.groovy b/ci/common.groovy index 1deb2b8e06..9552a3f9e9 100644 --- a/ci/common.groovy +++ b/ci/common.groovy @@ -160,7 +160,7 @@ def ghcmgrBuildObj(success) { return [ id: env.BUILD_DISPLAY_NAME, commit: GIT_COMMIT.take(8), - success: success ? success : true, + success: success != null ? success : true, platform: env.BUILD_PLATFORM + (getBuildType() == 'e2e' ? '-e2e' : ''), duration: buildDuration(), url: currentBuild.absoluteUrl,