build: no need to slow down build CI times by building twice

We're already testing that we can build from the source tarball in all
the non-git builds.
This commit is contained in:
Marcus Holland-Moritz 2025-04-13 11:50:55 +02:00
parent 5f35470ad8
commit 3584158a58

View File

@ -339,40 +339,7 @@ else
fi
if [[ "-$BUILD_TYPE-" == *-static-* ]]; then
if [[ "-$BUILD_TYPE-" == *-release-* ]]; then
# in the clang-release-static case, we also try to build from the source tarball
if [[ "-$BUILD_TYPE-" == *-clang-* ]] && [[ "-$BUILD_TYPE-" != *-O2-* ]]; then
$BUILD_TOOL package_source
$BUILD_TOOL realclean
cd "$HOME"
VERSION=$(git -C /workspace describe --tags --match "v*" --dirty --abbrev=10)
VERSION=${VERSION:1}
rm -rf dwarfs-*
rm -f dwarfs
mv "build/dwarfs-${VERSION}.tar.zst" .
rm -rf build
tar xvf "dwarfs-${VERSION}.tar.zst"
mv "dwarfs-${VERSION}" dwarfs
mkdir build
cd build
# shellcheck disable=SC2086
cmake ../dwarfs/ $CMAKE_ARGS
time $BUILD_TOOL
$RUN_TESTS
fi
fi
# for release and resize builds, strip the binaries
# for release and relsize builds, strip the binaries
if [[ "-$BUILD_TYPE-" =~ -(release|relsize)- ]]; then
$BUILD_TOOL strip
fi