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/03/31 23:06:33 UTC

[2/2] logging-log4j-scala git commit: Add rat checks to jenkins pipeline

Add rat checks to jenkins pipeline


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/commit/a6af7ecc
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/tree/a6af7ecc
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/diff/a6af7ecc

Branch: refs/heads/sbt
Commit: a6af7ecc166c2fdd439a0cc69833002d5680db36
Parents: 34e39f8
Author: Matt Sicker <bo...@gmail.com>
Authored: Sat Mar 31 18:06:25 2018 -0500
Committer: Matt Sicker <bo...@gmail.com>
Committed: Sat Mar 31 18:06:25 2018 -0500

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


http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/blob/a6af7ecc/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index 90b3893..c9d0812 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -27,6 +27,7 @@ pipeline {
         stage('Build') {
             steps {
                 ansiColor('xterm') {
+                    sh './sbt -batch auditCheck'
                     sh './sbt -batch "+ compile"'
                 }
             }
@@ -34,6 +35,7 @@ pipeline {
         stage('Test') {
             steps {
                 ansiColor('xterm') {
+                    sh './sbt -batch Test/auditCheck'
                     sh './sbt -batch "+ test"'
                 }
             }