You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by st...@apache.org on 2020/10/19 05:35:31 UTC

[phoenix] branch 4.x updated: PHOENIX-6188 Jenkins job history uses too much storage (addendum: do not compress Yetus logs)

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

stoty pushed a commit to branch 4.x
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/4.x by this push:
     new fe787bf  PHOENIX-6188 Jenkins job history uses too much storage (addendum: do not compress Yetus logs)
fe787bf is described below

commit fe787bfd594bc80cfd4f133afc9693ee60ae846f
Author: Istvan Toth <st...@apache.org>
AuthorDate: Mon Oct 19 07:34:25 2020 +0200

    PHOENIX-6188 Jenkins job history uses too much storage (addendum: do not compress Yetus logs)
---
 Jenkinsfile.github | 2 +-
 Jenkinsfile.yetus  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile.github b/Jenkinsfile.github
index f203656..a74aebd 100644
--- a/Jenkinsfile.github
+++ b/Jenkinsfile.github
@@ -128,7 +128,7 @@ pipeline {
                               reportFiles: 'report.html',
                               reportName: 'PR General Check Report'
                             ]
-                            sh "find ${WORKDIR_REL}/${PATCH_REL}/ -name \\*.txt -exec gzip {} \\;"
+                            sh "find ${WORKDIR_REL}/${PATCH_REL}/ -name org.apache\\*.txt -exec gzip {} \\;"
                             archiveArtifacts artifacts: "${WORKDIR_REL}/${PATCH_REL}/*", excludes: "${WORKDIR_REL}/${PATCH_REL}/precommit"
                             archiveArtifacts artifacts: "${WORKDIR_REL}/${PATCH_REL}/**/*", excludes: "${WORKDIR_REL}/${PATCH_REL}/precommit/**/*"
                         }
diff --git a/Jenkinsfile.yetus b/Jenkinsfile.yetus
index af776bf..c70dc99 100644
--- a/Jenkinsfile.yetus
+++ b/Jenkinsfile.yetus
@@ -48,7 +48,7 @@ pipeline {
                 always {
                     junit testResults: "component/**/target/**/TEST-*.xml", allowEmptyResults: true
                     // Has to be relative to WORKSPACE.
-                    sh "find patchprocess/ -name \\*.txt -exec gzip {} \\;"
+                    sh "find patchprocess/ -name org.apache\\*.txt -exec gzip {} \\;"
                     archiveArtifacts artifacts: "patchprocess/*", excludes: "patchprocess/precommit"
                     archiveArtifacts artifacts: "patchprocess/**/*", excludes: "patchprocess/precommit/**/*"
                 }