You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by vo...@apache.org on 2021/02/02 15:19:56 UTC

[myfaces] branch master updated (2f70ce1 -> 03d5e72)

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

volosied pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces.git.


 discard 2f70ce1  Fix JenkinsFile
     new 03d5e72  Fix JenkinsFile

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (2f70ce1)
            \
             N -- N -- N   refs/heads/master (03d5e72)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Jenkinsfile | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)


[myfaces] 01/01: Fix JenkinsFile

Posted by vo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

volosied pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces.git

commit 03d5e727018559235663f2ae47d3803ca1dbd045
Author: Volodymyr Siedlecki <vo...@gmail.com>
AuthorDate: Tue Feb 2 10:08:23 2021 -0500

    Fix JenkinsFile
---
 Jenkinsfile | 61 ++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 32 insertions(+), 29 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 73bbf8c..6d4fd2a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -22,6 +22,11 @@ pipeline {
         label 'ubuntu'
     }
 
+    tools {
+        maven "maven_latest"
+        jdk "jdk_1.8_latest"
+    }
+
     options {
         buildDiscarder(logRotator(numToKeepStr: '5'))
         timeout(time: 2, unit: 'HOURS')
@@ -32,38 +37,36 @@ pipeline {
         pollSCM('@hourly')
     }
 
-    stage ('Build and Test - Java 8') {
-        options {
-        timeout(time: 4, unit: 'HOURS')
-            retry(2)
-        }
-        steps {
-            sh 'mvn -V clean verify checkstyle:check apache-rat:check'
-        }
-        post {
-            always {
-                junit '**/target/surefire-reports/*.xml'
-                deleteDir()
+    stages {
+        stage ('Build and Test - Java 8') {
+            options {
+            timeout(time: 4, unit: 'HOURS')
+                retry(2)
+            }
+            steps {
+                sh 'mvn -V clean verify checkstyle:check apache-rat:check'
+            }
+            post {
+                always {
+                    junit '**/target/surefire-reports/*.xml'
+                    deleteDir()
+                }
             }
         }
-    }
 
-    stage ('Deploy') {
-        options {
-            timeout(time: 2, unit: 'HOURS')
-            retry(2)
-        }
-        tools {
-            maven "maven_latest"
-            jdk "jdk_8_latest"
-        }
-        steps {
-            sh "mvn clean deploy -Pgenerate-assembly"
-        }
-        post {
-            always {
-                junit(testResults: '**/surefire-reports/*.xml', allowEmptyResults: true)
-                archiveArtifacts '**/target/*.jar'
+        stage ('Deploy') {
+            options {
+                timeout(time: 2, unit: 'HOURS')
+                retry(2)
+            }
+            steps {
+                sh "mvn clean deploy -Pgenerate-assembly"
+            }
+            post {
+                always {
+                    junit(testResults: '**/surefire-reports/*.xml', allowEmptyResults: true)
+                    archiveArtifacts '**/target/*.jar'
+                }
             }
         }
     }