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/11/13 10:01:59 UTC

[phoenix-connectors] branch master updated: PHOENIX-6188 Jenkins job history uses too much storage (addendum: fix artifact dir regression)

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

stoty pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix-connectors.git


The following commit(s) were added to refs/heads/master by this push:
     new 7a0f920  PHOENIX-6188 Jenkins job history uses too much storage (addendum: fix artifact dir regression)
7a0f920 is described below

commit 7a0f92027839521d95f08c3577ef5a21d03e284c
Author: Istvan Toth <st...@apache.org>
AuthorDate: Fri Nov 13 10:48:43 2020 +0100

    PHOENIX-6188 Jenkins job history uses too much storage (addendum: fix artifact dir regression)
---
 dev/Jenkinsfile.github | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/Jenkinsfile.github b/dev/Jenkinsfile.github
index 8acabd4..2d8f4df 100644
--- a/dev/Jenkinsfile.github
+++ b/dev/Jenkinsfile.github
@@ -131,7 +131,7 @@ pipeline {
                               reportFiles: 'report.html',
                               reportName: 'PR General Check Report'
                             ]
-                            sh "find ${WORKDIR_REL}/${PATCH_REL}/output/ -name org.apache\\*.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/**/*"
                         }