From b49e8d032f1b6d9062edb15c425488715f0e178c Mon Sep 17 00:00:00 2001 From: Zakhar Bessarab Date: Fri, 31 Oct 2025 15:45:33 +0400 Subject: [PATCH] make: add vmutils target for linux/s390x for CI builds Currently, CI builds are ignoring linux/s390x due to missing target. See an example: https://github.com/VictoriaMetrics/VictoriaMetrics-enterprise/actions/runs/18971198439/job/54179142369 Follow-up for 255a0cf6, 73b10d76 Signed-off-by: Zakhar Bessarab --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index bad7f6c987..00950ebf08 100644 --- a/Makefile +++ b/Makefile @@ -125,6 +125,15 @@ vmutils-linux-ppc64le: \ vmrestore-linux-ppc64le \ vmctl-linux-ppc64le +vmutils-linux-s390x: \ + vmagent-linux-s390x \ + vmalert-linux-s390x \ + vmalert-tool-linux-s390x \ + vmauth-linux-s390x \ + vmbackup-linux-s390x \ + vmrestore-linux-s390x \ + vmctl-linux-s390x + vmutils-darwin-amd64: \ vmagent-darwin-amd64 \ vmalert-darwin-amd64 \