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:44 UTC

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

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'