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 2020/07/29 19:38:43 UTC

[logging-pipelines] branch master updated (e440980 -> d81b451)

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

mattsicker pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/logging-pipelines.git.


    from e440980  Fix parsing error
     new 6b2d42d  Add verification step for parent pom
     new d81b451  Remove polling workaround

The 2 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:
 audit/Jenkinsfile    | 4 ----
 chainsaw/Jenkinsfile | 4 ----
 kotlin/Jenkinsfile   | 4 ----
 log4j/Jenkinsfile    | 4 ----
 parent/Jenkinsfile   | 9 +++++----
 scala/Jenkinsfile    | 4 ----
 6 files changed, 5 insertions(+), 24 deletions(-)


[logging-pipelines] 01/02: Add verification step for parent pom

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

mattsicker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-pipelines.git

commit 6b2d42debe2e0d0154c4b2d2750e269bc9c7bea4
Author: Matt Sicker <bo...@gmail.com>
AuthorDate: Wed Jul 29 14:35:52 2020 -0500

    Add verification step for parent pom
---
 parent/Jenkinsfile | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/parent/Jenkinsfile b/parent/Jenkinsfile
index b8b1f3e..4770a50 100644
--- a/parent/Jenkinsfile
+++ b/parent/Jenkinsfile
@@ -35,6 +35,11 @@ pipeline {
         lib 'logging'
     }
     stages {
+        stage('Verifying') {
+            steps {
+                mvn 'verify'
+            }
+        }
         stage('Deploy') {
             when {
                 branch 'master'


[logging-pipelines] 02/02: Remove polling workaround

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

mattsicker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-pipelines.git

commit d81b451e9bc0626eec08f0b2cdacb3b3a0a241e7
Author: Matt Sicker <bo...@gmail.com>
AuthorDate: Wed Jul 29 14:38:06 2020 -0500

    Remove polling workaround
    
    Gitbox webhooks are enabled again.
---
 audit/Jenkinsfile    | 4 ----
 chainsaw/Jenkinsfile | 4 ----
 kotlin/Jenkinsfile   | 4 ----
 log4j/Jenkinsfile    | 4 ----
 parent/Jenkinsfile   | 4 ----
 scala/Jenkinsfile    | 4 ----
 6 files changed, 24 deletions(-)

diff --git a/audit/Jenkinsfile b/audit/Jenkinsfile
index 1951848..94f8c98 100644
--- a/audit/Jenkinsfile
+++ b/audit/Jenkinsfile
@@ -22,10 +22,6 @@ pipeline {
         buildDiscarder logRotator(numToKeepStr: '25')
         timeout time: 1, unit: 'HOURS'
     }
-    triggers {
-        // TODO: this can be removed once gitbox webhooks are re-enabled
-        pollSCM '@hourly'
-    }
     agent {
         label 'ubuntu'
     }
diff --git a/chainsaw/Jenkinsfile b/chainsaw/Jenkinsfile
index 0f8da19..eda1825 100644
--- a/chainsaw/Jenkinsfile
+++ b/chainsaw/Jenkinsfile
@@ -24,10 +24,6 @@ pipeline {
         buildDiscarder logRotator(numToKeepStr: '25')
         timeout time: 1, unit: 'HOURS'
     }
-    triggers {
-        // TODO: this can be removed once gitbox webhooks are re-enabled
-        pollSCM '@hourly'
-    }
     agent {
         label 'ubuntu'
     }
diff --git a/kotlin/Jenkinsfile b/kotlin/Jenkinsfile
index 1951848..94f8c98 100644
--- a/kotlin/Jenkinsfile
+++ b/kotlin/Jenkinsfile
@@ -22,10 +22,6 @@ pipeline {
         buildDiscarder logRotator(numToKeepStr: '25')
         timeout time: 1, unit: 'HOURS'
     }
-    triggers {
-        // TODO: this can be removed once gitbox webhooks are re-enabled
-        pollSCM '@hourly'
-    }
     agent {
         label 'ubuntu'
     }
diff --git a/log4j/Jenkinsfile b/log4j/Jenkinsfile
index 40d6c41..65cd554 100644
--- a/log4j/Jenkinsfile
+++ b/log4j/Jenkinsfile
@@ -33,10 +33,6 @@ pipeline {
         // fail parallel stages as soon as any of them fail
         parallelsAlwaysFailFast()
     }
-    triggers {
-        // TODO: this can be removed once gitbox webhooks are re-enabled
-        pollSCM 'H/5 * * * *'
-    }
     // https://jenkins.io/doc/book/pipeline/syntax/#agent
     agent {
         // https://cwiki.apache.org/confluence/display/INFRA/Jenkins+node+labels
diff --git a/parent/Jenkinsfile b/parent/Jenkinsfile
index 4770a50..385ce10 100644
--- a/parent/Jenkinsfile
+++ b/parent/Jenkinsfile
@@ -24,10 +24,6 @@ pipeline {
         buildDiscarder logRotator(numToKeepStr: '10')
         timeout time: 5, unit: 'MINUTES'
     }
-    triggers {
-        // TODO: this can be removed once gitbox webhooks are re-enabled
-        pollSCM '@hourly'
-    }
     agent {
         label 'ubuntu'
     }
diff --git a/scala/Jenkinsfile b/scala/Jenkinsfile
index eb29d20..1000609 100644
--- a/scala/Jenkinsfile
+++ b/scala/Jenkinsfile
@@ -22,10 +22,6 @@ pipeline {
         buildDiscarder logRotator(numToKeepStr: '25')
         timeout time: 1, unit: 'HOURS'
     }
-    triggers {
-        // TODO: this can be removed once gitbox webhooks are re-enabled
-        pollSCM '@hourly'
-    }
     agent {
         label 'ubuntu'
     }