Skip to content

Commit

Permalink
PHOENIX-6188 Jenkins job history uses too much storage (addendum: do …
Browse files Browse the repository at this point in the history
…not compress Yetus logs)
  • Loading branch information
stoty committed Oct 19, 2020
1 parent 7436538 commit f0e5f05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile.github
Original file line number Diff line number Diff line change
Expand Up @@ -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/**/*"
}
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile.yetus
Original file line number Diff line number Diff line change
Expand Up @@ -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/**/*"
}
Expand Down

0 comments on commit f0e5f05

Please sign in to comment.