From 769ea7799becd7860e8e149b29054becefae5a78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Fri, 21 Jun 2024 02:34:44 +0200 Subject: [PATCH] feat(ci)_: add ansiColor(xterm) for nice colors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- _assets/ci/Jenkinsfile | 1 + _assets/ci/Jenkinsfile.android | 1 + _assets/ci/Jenkinsfile.ios | 1 + _assets/ci/Jenkinsfile.linux | 1 + _assets/ci/Jenkinsfile.tests | 1 + 5 files changed, 5 insertions(+) diff --git a/_assets/ci/Jenkinsfile b/_assets/ci/Jenkinsfile index 59e87b5c6..68bc18743 100644 --- a/_assets/ci/Jenkinsfile +++ b/_assets/ci/Jenkinsfile @@ -20,6 +20,7 @@ pipeline { options { /* Prevent Jenkins jobs from running forever */ timeout(time: 40, unit: 'MINUTES') + ansiColor('xterm') disableConcurrentBuilds() /* Go requires a certain directory structure */ checkoutToSubdirectory('src/github.com/status-im/status-go') diff --git a/_assets/ci/Jenkinsfile.android b/_assets/ci/Jenkinsfile.android index 12fe6cf8d..dbe4d83a5 100644 --- a/_assets/ci/Jenkinsfile.android +++ b/_assets/ci/Jenkinsfile.android @@ -19,6 +19,7 @@ pipeline { options { timestamps() + ansiColor('xterm') /* Prevent Jenkins jobs from running forever */ timeout(time: 10, unit: 'MINUTES') disableConcurrentBuilds() diff --git a/_assets/ci/Jenkinsfile.ios b/_assets/ci/Jenkinsfile.ios index a4be9a7ad..cbeaf4ef2 100644 --- a/_assets/ci/Jenkinsfile.ios +++ b/_assets/ci/Jenkinsfile.ios @@ -19,6 +19,7 @@ pipeline { options { timestamps() + ansiColor('xterm') /* Prevent Jenkins jobs from running forever */ timeout(time: 10, unit: 'MINUTES') disableConcurrentBuilds() diff --git a/_assets/ci/Jenkinsfile.linux b/_assets/ci/Jenkinsfile.linux index 178f462fc..204311d40 100644 --- a/_assets/ci/Jenkinsfile.linux +++ b/_assets/ci/Jenkinsfile.linux @@ -19,6 +19,7 @@ pipeline { options { timestamps() + ansiColor('xterm') /* Prevent Jenkins jobs from running forever */ timeout(time: 10, unit: 'MINUTES') disableConcurrentBuilds() diff --git a/_assets/ci/Jenkinsfile.tests b/_assets/ci/Jenkinsfile.tests index bca5b724e..81a4119c8 100644 --- a/_assets/ci/Jenkinsfile.tests +++ b/_assets/ci/Jenkinsfile.tests @@ -39,6 +39,7 @@ pipeline { options { timestamps() + ansiColor('xterm') /* Prevent Jenkins jobs from running forever */ timeout(time: getDefaultTimeout(), unit: 'MINUTES') disableConcurrentBuilds()