You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2020/06/01 10:34:48 UTC

[maven] 01/29: add Jenkinsfile for its running

This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch it_runs
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 457a92c1da0affb23540a523d95df50ef9b3008f
Author: olivier lamy <ol...@apache.org>
AuthorDate: Mon Jun 1 12:28:14 2020 +1000

    add Jenkinsfile for its running
    
    Signed-off-by: olivier lamy <ol...@apache.org>
---
 Jenkinsfile.its | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/Jenkinsfile.its b/Jenkinsfile.its
new file mode 100644
index 0000000..7da5393
--- /dev/null
+++ b/Jenkinsfile.its
@@ -0,0 +1,16 @@
+pipeline {
+  agent any
+  options {
+    durabilityHint('PERFORMANCE_OPTIMIZED')
+    buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '5'))
+    timeout(time: 180, unit: 'MINUTES')
+  }
+  stages {
+    stage( "Checkout Maven Integration Testing" ) {
+      steps {
+        git url: "https://github.com/apache/maven-integration-testing.git", branch: "master"
+        sh "ls -lrt"
+      }
+    }
+  }
+}