ci : abort if upstream ggml version does not exist

This commit is contained in:
Daniel Bevenius
2026-08-10 14:55:05 +02:00
parent ffe1bce602
commit 28f8a44659
+2 -2
View File
@@ -78,8 +78,8 @@ jobs:
echo "Local ggml version: ${GGML_VERSION}"
if ! git clone --depth 1 --branch "${GGML_VERSION}" https://github.com/ggml-org/ggml.git upstream-ggml 2>/dev/null; then
echo "Warning: tag ${GGML_VERSION} not found in upstream ggml - skipping comparison"
exit 0
echo "Error: tag ${GGML_VERSION} not found in upstream ggml - skipping comparison"
exit 1
fi
echo "Comparing local ggml/ src and include with upstream ${GGML_VERSION}..."