test/diff-manifests: print gen-manifests output

Don't silence the output.  It should be much less noisy now that the
progress isn't printed on a timer but only when something changes.
This commit is contained in:
Achilleas Koutsou 2022-07-08 21:09:43 +02:00 committed by Christian Kellner
parent 2afc8fd1dd
commit 68227ed18b

View file

@ -56,13 +56,13 @@ sudo dnf build-dep -y osbuild-composer.spec
manifestdir=$(mktemp -d)
greenprint "Generating all manifests for HEAD (PR #${prnum})"
go run ./cmd/gen-manifests --output "${manifestdir}/PR" --workers 50 > /dev/null
go run ./cmd/gen-manifests --output "${manifestdir}/PR" --workers 50
greenprint "Checking out merge-base ${mergebase}"
git checkout "${mergebase}"
greenprint "Generating all manifests for merge-base (${mergebase})"
go run ./cmd/gen-manifests --output "${manifestdir}/${mergebase}" --workers 50 > /dev/null
go run ./cmd/gen-manifests --output "${manifestdir}/${mergebase}" --workers 50
greenprint "Diff: ${manifestdir}/${mergebase} ${manifestdir}/PR"
err=0