fix success value of build objects sent to ghcmgr
Signed-off-by: Jakub Sokołowski <jakub@status.im> Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
This commit is contained in:
parent
8ba1b43349
commit
c3bddde7dd
|
@ -160,7 +160,7 @@ def ghcmgrBuildObj(success) {
|
||||||
return [
|
return [
|
||||||
id: env.BUILD_DISPLAY_NAME,
|
id: env.BUILD_DISPLAY_NAME,
|
||||||
commit: GIT_COMMIT.take(8),
|
commit: GIT_COMMIT.take(8),
|
||||||
success: success ? success : true,
|
success: success != null ? success : true,
|
||||||
platform: env.BUILD_PLATFORM + (getBuildType() == 'e2e' ? '-e2e' : ''),
|
platform: env.BUILD_PLATFORM + (getBuildType() == 'e2e' ? '-e2e' : ''),
|
||||||
duration: buildDuration(),
|
duration: buildDuration(),
|
||||||
url: currentBuild.absoluteUrl,
|
url: currentBuild.absoluteUrl,
|
||||||
|
|
Loading…
Reference in New Issue