mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-26 00:19:44 +00:00
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 [
|
||||
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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user