-
Notifications
You must be signed in to change notification settings - Fork 987
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
referenced issue: #21706 Signed-off-by: markoburcul <[email protected]>
- Loading branch information
1 parent
7b85bfb
commit 10c1f3f
Showing
3 changed files
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env groovy | ||
library '[email protected].13' | ||
library '[email protected].15' | ||
|
||
/* Options section can't access functions in objects. */ | ||
def isPRBuild = utils.isPRBuild() | ||
|
@@ -41,6 +41,7 @@ pipeline { | |
BUILD_ENV = 'prod' | ||
NIX_CONF_DIR = "${env.WORKSPACE}/nix" | ||
FASTLANE_DISABLE_COLORS = 1 | ||
SENTRY_PRODUCTION = "${utils.isReleaseBuild() ? 'true' : 'false'}" | ||
} | ||
|
||
stages { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env groovy | ||
library '[email protected].13' | ||
library '[email protected].15' | ||
|
||
/* Options section can't access functions in objects. */ | ||
def isPRBuild = utils.isPRBuild() | ||
|
@@ -41,6 +41,7 @@ pipeline { | |
NIX_CONF_DIR = "${env.WORKSPACE}/nix" | ||
FASTLANE_DISABLE_COLORS = 1 | ||
BUNDLE_PATH = "${HOME}/.bundle" | ||
SENTRY_PRODUCTION = "${utils.isReleaseBuild() ? 'true' : 'false'}" | ||
} | ||
|
||
stages { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters