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