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()