From 28f8a44659a90f1b70f5827bdb7d42c82586ad29 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Mon, 10 Aug 2026 14:55:05 +0200 Subject: [PATCH] ci : abort if upstream ggml version does not exist --- .github/workflows/make-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/make-release.yml b/.github/workflows/make-release.yml index a7c4604cd4..b9ecf514d0 100644 --- a/.github/workflows/make-release.yml +++ b/.github/workflows/make-release.yml @@ -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}..."