You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2018/04/07 18:18:06 UTC

logging-log4j2 git commit: Add 90 minute timeout to jenkins pipeline

Repository: logging-log4j2
Updated Branches:
  refs/heads/master d159edb62 -> 079f09ef1


Add 90 minute timeout to jenkins pipeline


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/079f09ef
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/079f09ef
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/079f09ef

Branch: refs/heads/master
Commit: 079f09ef12d1f39e001b3f0e451d4d2800261d9f
Parents: d159edb
Author: Matt Sicker <bo...@gmail.com>
Authored: Sat Apr 7 13:18:02 2018 -0500
Committer: Matt Sicker <bo...@gmail.com>
Committed: Sat Apr 7 13:18:02 2018 -0500

----------------------------------------------------------------------
 Jenkinsfile | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/079f09ef/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index da86e52..a9e29d6 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,6 +17,9 @@
  */
 
 pipeline {
+    options {
+        timeout time: 90, unit: 'MINUTES'
+    }
     agent none
     stages {
         stage('Build') {