ci: enable sentry in the release builds (#16845)

Referenced issue: https://github.com/status-im/status-desktop/issues/16842

Signed-off-by: markoburcul <marko@status.im>
This commit is contained in:
Marko Burčul 2024-12-02 11:16:51 +01:00 committed by GitHub
parent 7323889a8c
commit ea57f31ceb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 9 additions and 5 deletions

View File

@ -1,5 +1,5 @@
#!/usr/bin/env groovy
library 'status-jenkins-lib@v1.9.7'
library 'status-jenkins-lib@v1.9.14'
/* Object to store public URLs for description. */
urls = [:]

View File

@ -1,5 +1,5 @@
#!/usr/bin/env groovy
library 'status-jenkins-lib@v1.9.7'
library 'status-jenkins-lib@v1.9.14'
/* Options section can't access functions in objects. */
def isPRBuild = utils.isPRBuild()
@ -73,6 +73,7 @@ pipeline {
STATUS_CLIENT_TARBALL = "pkg/${utils.pkgFilename(ext: 'tar.gz', arch: getArch())}"
/* prevent sharing cache dir across different jobs */
GO_GENERATE_FAST_DIR = "${env.WORKSPACE_TMP}/go-generate-fast"
SENTRY_PRODUCTION = "${utils.isReleaseBuild() ? 'true' : 'false'}"
}
stages {

View File

@ -1,5 +1,5 @@
#!/usr/bin/env groovy
library 'status-jenkins-lib@v1.9.7'
library 'status-jenkins-lib@v1.9.14'
/* Options section can't access functions in objects. */
def isPRBuild = utils.isPRBuild()
@ -65,6 +65,7 @@ pipeline {
STATUS_CLIENT_TARBALL = "pkg/${utils.pkgFilename(ext: 'nix.tar.gz', arch: getArch())}"
/* prevent sharing cache dir across different jobs */
GO_GENERATE_FAST_DIR = "${env.WORKSPACE_TMP}/go-generate-fast"
SENTRY_PRODUCTION = "${utils.isReleaseBuild() ? 'true' : 'false'}"
}
stages {

View File

@ -1,5 +1,5 @@
#!/usr/bin/env groovy
library 'status-jenkins-lib@v1.9.7'
library 'status-jenkins-lib@v1.9.14'
/* Options section can't access functions in objects. */
def isPRBuild = utils.isPRBuild()
@ -77,6 +77,7 @@ pipeline {
MACOS_NOTARIZE_TEAM_ID = "8B5X2M6H2Y"
/* prevent sharing cache dir across different jobs */
GO_GENERATE_FAST_DIR = "${env.WORKSPACE_TMP}/go-generate-fast"
SENTRY_PRODUCTION = "${utils.isReleaseBuild() ? 'true' : 'false'}"
}
stages {

View File

@ -1,5 +1,5 @@
#!/usr/bin/env groovy
library 'status-jenkins-lib@v1.9.7'
library 'status-jenkins-lib@v1.9.14'
/* Options section can't access functions in objects. */
def isPRBuild = utils.isPRBuild()
@ -81,6 +81,7 @@ pipeline {
WINDOWS_CODESIGN_TIMESTAMP_URL = "${params.WINDOWS_CODESIGN_TIMESTAMP_URL}"
/* prevent sharing cache dir across different jobs */
GO_GENERATE_FAST_DIR = "${env.WORKSPACE_TMP}/go-generate-fast"
SENTRY_PRODUCTION = "${utils.isReleaseBuild() ? 'true' : 'false'}"
}
stages {