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:41:03 UTC

[phoenix-connectors] branch master 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 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 1bfa3ed  PHOENIX-6188 Jenkins job history uses too much storage (addendum: do not compress Yetus logs)
1bfa3ed is described below

commit 1bfa3edfd5cc080283f2e0b09b7055df1ebcb705
Author: Istvan Toth <st...@apache.org>
AuthorDate: Mon Oct 19 07:40:32 2020 +0200

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

diff --git a/dev/Jenkinsfile.github b/dev/Jenkinsfile.github
index d3f0853..2d10585 100644
--- a/dev/Jenkinsfile.github
+++ b/dev/Jenkinsfile.github
@@ -1,4 +1,4 @@
-// Licensed to the Apache Software Foundation (ASF) under one
+p// Licensed to the Apache Software Foundation (ASF) under one
 // or more contributor license agreements.  See the NOTICE file
 // distributed with this work for additional information
 // regarding copyright ownership.  The ASF licenses this file
@@ -131,7 +131,7 @@ pipeline {
                               reportFiles: 'report.html',
                               reportName: 'PR General Check Report'
                             ]
-                            sh "find ${WORKDIR_REL}/${PATCH_REL}/output/ -type f -exec gzip {} \\;"
+                            sh "find ${WORKDIR_REL}/${PATCH_REL}/output/ -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/**/*"
                         }