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/04/04 04:49:21 UTC

[logging-log4j2] 01/02: Enable fingerprints and faster pipelines

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-log4j2.git

commit b4fda7af4d4bd080af45f8cc4cce4bddb34fe52f
Author: Matt Sicker <bo...@gmail.com>
AuthorDate: Fri Apr 3 23:30:02 2020 -0500

    Enable fingerprints and faster pipelines
---
 Jenkinsfile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 5a8dbcc..d8115f2 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -22,6 +22,7 @@ pipeline {
         buildDiscarder logRotator(numToKeepStr: '10')
         timeout(90)
         parallelsAlwaysFailFast()
+        durabilityHint 'PERFORMANCE_OPTIMIZED'
     }
     agent none
     stages {
@@ -41,7 +42,7 @@ pipeline {
                     }
                     post {
                         success {
-                            archiveArtifacts '**/*.jar'
+                            archiveArtifacts artifacts: '**/*.jar', fingerprint: true
                             recordIssues tools: [cpd(pattern: '**/target/cpd.xml'),
                                     checkStyle(pattern: '**/target/checkstyle-result.xml'),
                                     pmdParser(pattern: '**/target/pmd.xml'),