From: David Galloway Date: Wed, 1 Apr 2026 20:26:13 +0000 (-0400) Subject: ceph-source-dist: Decompress the bzip2 to stdout X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d558bac29186b66d13809be0dd2655c795dde6be;p=ceph-build.git ceph-source-dist: Decompress the bzip2 to stdout The original bunzip didn't like the `ln ceph-$ceph_version_tarball.$extension dist/` hard link. bunzip2 refuses to decompress in-place when a file has multiple hard links, because doing so would silently corrupt the other link Signed-off-by: David Galloway --- diff --git a/ceph-source-dist/build/Jenkinsfile b/ceph-source-dist/build/Jenkinsfile index 7a2c961c..dd389f05 100644 --- a/ceph-source-dist/build/Jenkinsfile +++ b/ceph-source-dist/build/Jenkinsfile @@ -104,8 +104,7 @@ pipeline { echo "Creating tar.gz for upstream release" pushd dist - bunzip2 ceph-$ceph_version_tarball.$extension - gzip ceph-$ceph_version_tarball.tar.gz + bzip2 -dc ceph-$ceph_version_tarball.$extension | gzip > ceph-$ceph_version_tarball.tar.gz popd else echo "BRANCH=${BRANCH}" > dist/branch