CI: Check that version of tarball builds is not "unknown".

This commit is contained in:
Joachim Bauch 2025-12-03 09:27:06 +01:00
commit ad15055515
No known key found for this signature in database
GPG key ID: 77C1D22D53E15F02

View file

@ -72,6 +72,11 @@ jobs:
run: |
echo "Building with $(nproc) threads"
make -C tmp build -j$(nproc)
UNKNOWN=$(./tmp/bin/signaling -version | grep unknown || true)
if [ -n "$UNKNOWN" ]; then \
echo "Found unknown version: $UNKNOWN"; \
exit 1; \
fi
test:
strategy: