From 5e9df2842150da7a6562ec4cb12773c332ff7aee Mon Sep 17 00:00:00 2001 From: marco Date: Wed, 17 Dec 2025 10:54:57 +0100 Subject: [PATCH] CI: build with the tag "nomsgpack" to reduce binary size --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3547082fb2a..1c1013d3113 100644 --- a/Makefile +++ b/Makefile @@ -20,8 +20,9 @@ include build/mk/gmsl/gmsl # (including cscli) so it is not recommended for production use. BUILD_RE2_WASM ?= 0 -#expr_debug tag is required to enable the debug mode in expr -GO_TAGS := netgo,osusergo,expr_debug +# expr_debug tag is required to enable the debug mode in expr +# nomsgpack builds gin without msgpack support, to reduce binary size +GO_TAGS := netgo,osusergo,expr_debug,nomsgpack # By default, build with sqlite3. BUILD_SQLITE ?= mattn