From: Mathieu Baudier Date: Tue, 19 Aug 2025 10:12:13 +0000 (+0200) Subject: Introduce update publishing X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=f7b515352eb7bb0e5d791720d59bb00214dbeda2;p=pkg%2Fggml Introduce update publishing --- diff --git a/Makefile b/Makefile index 403fe91..2125fd8 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,21 @@ LLAMA_CPP_CHECKOUT=f08c4c0 GGML_BASE=sources/ggml LLAMA_CPP_BASE=sources/llama.cpp +WHISPER_CPP_BASE=sources/whisper.cpp + +define publish_updates # (repobase) + git -C $(1) push origin master + git -C $(1) push origin upstream/latest + git -C $(1) push origin debian/latest + git -C $(1) push mbaudier@github master + git -C $(1) push mbaudier@github upstream/latest + git -C $(1) push mbaudier@github debian/latest +endef + +publish-updates: + $(call publish_updates,$(GGML_BASE)) + $(call publish_updates,$(LLAMA_CPP_BASE)) + $(call publish_updates,$(WHISPER_CPP_BASE)) update-ggml: # make sure evrything is clean