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/04/03 21:06:28 UTC

[06/50] [abbrv] logging-log4j-scala git commit: Move artifact archival to deploy stage

Move artifact archival to deploy stage


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/47ba596b
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/tree/47ba596b
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/diff/47ba596b

Branch: refs/heads/master
Commit: 47ba596bc0e1631c4ee0a281c48f3f4c0321078a
Parents: 18068fb
Author: Matt Sicker <bo...@gmail.com>
Authored: Thu Mar 29 11:18:01 2018 -0500
Committer: Matt Sicker <bo...@gmail.com>
Committed: Thu Mar 29 11:18:01 2018 -0500

----------------------------------------------------------------------
 Jenkinsfile | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j-scala/blob/47ba596b/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index a58a304..a117fc0 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -28,7 +28,6 @@ pipeline {
             steps {
                 ansiColor('xterm') {
                     sh './sbt -batch "+ compile"'
-                    archiveArtifacts artifacts: 'target/**/*.jar', fingerprint: true, onlyIfSuccessful: true
                 }
             }
         }
@@ -39,17 +38,16 @@ pipeline {
                 }
             }
         }
-        // FIXME: LOG4J2-2291
-        /*
         stage('Deploy') {
             when { branch 'master' }
             steps {
                 ansiColor('xterm') {
-                    sh './sbt -batch "+ publish"'
+                    // FIXME: LOG4J2-2291
+                    //sh './sbt -batch "+ publish"'
+                    archiveArtifacts artifacts: 'target/**/*.jar', fingerprint: true
                 }
             }
         }
-        */
     }
 }