From 2890614a085b795f4ba6a87b7304e02c1d316e65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 13 Nov 2018 12:58:34 +0100 Subject: [PATCH] add timestamps to all commands MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.android | 1 + ci/Jenkinsfile.ios | 1 + ci/Jenkinsfile.linux | 1 + ci/Jenkinsfile.macos | 1 + 4 files changed, 4 insertions(+) diff --git a/ci/Jenkinsfile.android b/ci/Jenkinsfile.android index 916422f889..873aecba6c 100644 --- a/ci/Jenkinsfile.android +++ b/ci/Jenkinsfile.android @@ -2,6 +2,7 @@ pipeline { agent { label 'linux' } options { + timestamps() /* Prevent Jenkins jobs from running forever */ timeout(time: 25, unit: 'MINUTES') /* Limit builds retained */ diff --git a/ci/Jenkinsfile.ios b/ci/Jenkinsfile.ios index 9ba0ab8786..957722d979 100644 --- a/ci/Jenkinsfile.ios +++ b/ci/Jenkinsfile.ios @@ -2,6 +2,7 @@ pipeline { agent { label 'fastlane' } options { + timestamps() /* Prevent Jenkins jobs from running forever */ timeout(time: 35, unit: 'MINUTES') /* Limit builds retained */ diff --git a/ci/Jenkinsfile.linux b/ci/Jenkinsfile.linux index 69547952ad..5091cadb88 100644 --- a/ci/Jenkinsfile.linux +++ b/ci/Jenkinsfile.linux @@ -15,6 +15,7 @@ pipeline { } options { + timestamps() /* Prevent Jenkins jobs from running forever */ timeout(time: 25, unit: 'MINUTES') /* Limit builds retained */ diff --git a/ci/Jenkinsfile.macos b/ci/Jenkinsfile.macos index 138db29aed..1e88281e6c 100644 --- a/ci/Jenkinsfile.macos +++ b/ci/Jenkinsfile.macos @@ -2,6 +2,7 @@ pipeline { agent { label 'macos' } options { + timestamps() /* Prevent Jenkins jobs from running forever */ timeout(time: 25, unit: 'MINUTES') /* Limit builds retained */