macos: bump notarization retry limit from 20 to 40
Notarization has been taking longer recently and it times out. Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
92552f0ab8
commit
bff7278b03
2
Makefile
2
Makefile
|
@ -567,7 +567,7 @@ ifdef MACOS_CODESIGN_IDENT
|
||||||
endif
|
endif
|
||||||
|
|
||||||
notarize-macos: export CHECK_INTERVAL_SEC ?= 30
|
notarize-macos: export CHECK_INTERVAL_SEC ?= 30
|
||||||
notarize-macos: export CHECK_RETRY_LIMIT ?= 20
|
notarize-macos: export CHECK_RETRY_LIMIT ?= 40
|
||||||
notarize-macos: export MACOS_BUNDLE_ID ?= im.status.ethereum.desktop
|
notarize-macos: export MACOS_BUNDLE_ID ?= im.status.ethereum.desktop
|
||||||
notarize-macos:
|
notarize-macos:
|
||||||
scripts/notarize-macos-pkg.sh $(STATUS_CLIENT_DMG)
|
scripts/notarize-macos-pkg.sh $(STATUS_CLIENT_DMG)
|
||||||
|
|
|
@ -25,7 +25,7 @@ pipeline {
|
||||||
options {
|
options {
|
||||||
timestamps()
|
timestamps()
|
||||||
/* Prevent Jenkins jobs from running forever */
|
/* Prevent Jenkins jobs from running forever */
|
||||||
timeout(time: 25, unit: 'MINUTES')
|
timeout(time: 30, unit: 'MINUTES')
|
||||||
/* manage how many builds we keep */
|
/* manage how many builds we keep */
|
||||||
buildDiscarder(logRotator(
|
buildDiscarder(logRotator(
|
||||||
numToKeepStr: '10',
|
numToKeepStr: '10',
|
||||||
|
|
|
@ -13,7 +13,7 @@ set -eof pipefail
|
||||||
BUNDLE_PATH="${1}"
|
BUNDLE_PATH="${1}"
|
||||||
# Notarization request check intervals/retries.
|
# Notarization request check intervals/retries.
|
||||||
CHECK_INTERVAL_SEC="${CHECK_INTERVAL_SEC:-30}"
|
CHECK_INTERVAL_SEC="${CHECK_INTERVAL_SEC:-30}"
|
||||||
CHECK_RETRY_LIMIT="${CHECK_RETRY_LIMIT:-20}"
|
CHECK_RETRY_LIMIT="${CHECK_RETRY_LIMIT:-40}"
|
||||||
# Unique ID of MacOS application.
|
# Unique ID of MacOS application.
|
||||||
MACOS_BUNDLE_ID="${MACOS_BUNDLE_ID:-im.status.ethereum.desktop}"
|
MACOS_BUNDLE_ID="${MACOS_BUNDLE_ID:-im.status.ethereum.desktop}"
|
||||||
# Xcode altool log file paths
|
# Xcode altool log file paths
|
||||||
|
|
Loading…
Reference in New Issue