Deb: Fix Salsa-CI autopkgtest failure

The autopkgtest was failing due to missing *.changes file. This is part
of source build, so revert autobake-deb.sh back to NOT using -b for
Gitlab-CI/Salsa-CI runs.
This commit is contained in:
Otto Kekäläinen 2022-03-24 00:43:04 -07:00 committed by Daniel Black
parent dcb2968f90
commit 9d6d122123

View File

@ -105,13 +105,6 @@ dch -b -D "${CODENAME}" -v "${VERSION}" "Automatic build with ${LOGSTRING}." --c
echo "Creating package version ${VERSION} ... "
# On Gitlab-CI, use -b to build binary only packages as there is
# no need to waste time on generating the source package.
if [[ $GITLAB_CI ]]
then
BUILDPACKAGE_FLAGS="-b"
fi
# Use eatmydata is available to build faster with less I/O, skipping fsync()
# during the entire build process (safe because a build can always be restarted)
if which eatmydata > /dev/null