From 8171fbf30b6a0f2b1dd0b8cfc8aa01d357637b5b Mon Sep 17 00:00:00 2001 From: Josef Schlehofer Date: Thu, 6 Aug 2026 09:47:33 +0200 Subject: [PATCH] pimbd: add test-version.sh for CI runtime tests The package version is derived from PKG_SOURCE_DATE and the git hash, which the binary does not report, so the generic version check of the CI runtime tests always fails for this package. Skip the version check. Signed-off-by: Josef Schlehofer Co-authored-by: Claude Fable 5 --- pimbd/test-version.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pimbd/test-version.sh diff --git a/pimbd/test-version.sh b/pimbd/test-version.sh new file mode 100644 index 0000000..b2ea8a2 --- /dev/null +++ b/pimbd/test-version.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +# shellcheck shell=busybox + +case "$PKG_NAME" in +pimbd) + # The package version is derived from the source date and git + # hash, which the binary does not report + exit 0 + ;; + +*) + echo "Untested package: $PKG_NAME" >&2 + exit 1 + ;; +esac