From 6c1e04b673a7bbd7798bed64c42bf66dfdfbf13b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Fri, 1 Jul 2022 11:52:49 +0200 Subject: [PATCH] ci: bump macos job timeout to 25 minutes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For some release builds the notarization step fails because Apple backend takes too long to return results. But the timeout triggered is the Jenkins job timeout and no the notarization timeout. Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.macos | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/Jenkinsfile.macos b/ci/Jenkinsfile.macos index 8ef01e7a95..2c5966abbd 100644 --- a/ci/Jenkinsfile.macos +++ b/ci/Jenkinsfile.macos @@ -21,7 +21,7 @@ pipeline { options { timestamps() /* Prevent Jenkins jobs from running forever */ - timeout(time: 20, unit: 'MINUTES') + timeout(time: 25, unit: 'MINUTES') /* manage how many builds we keep */ buildDiscarder(logRotator( numToKeepStr: '10',