This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/master by this push:
new f34e214ffc9 HBASE-28331 Addendum remove stale hadoop tarballs in
client integration test
f34e214ffc9 is described below
commit f34e214ffc9d6f70ead8d8730e3d3199523ed419
Author: Duo Zhang <[email protected]>
AuthorDate: Tue Jan 30 11:23:07 2024 +0800
HBASE-28331 Addendum remove stale hadoop tarballs in client integration test
---
dev-support/Jenkinsfile | 3 +++
1 file changed, 3 insertions(+)
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index 5ff411ee473..a767775b36b 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -661,6 +661,9 @@ pipeline {
rm -rf "hadoop-3" && mkdir "hadoop-3"
rm -rf ".m2-for-repo" && mkdir ".m2-for-repo"
rm -rf ".m2-for-src" && mkdir ".m2-for-src"
+ # remove old hadoop tarballs in workspace
+ rm -rf hadoop-2*.tar.gz
+ rm -rf hadoop-3*.tar.gz
echo "(x) {color:red}-1 source release artifact{color}\n--
Something went wrong with this stage, [check relevant console
output|${BUILD_URL}/console]." >output-srctarball/commentfile
echo "(x) {color:red}-1 client integration test{color}\n--
Something went wrong with this stage, [check relevant console
output|${BUILD_URL}/console]." >output-integration/commentfile
'''