From 82ea1228dcc7f4d088043493512fa8f3a40bfb52 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sat, 16 Mar 2024 23:27:47 +0100 Subject: Attempt multiple builds instead of cross-compiling --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d8a7b62..07cc42f 100644 --- a/Makefile +++ b/Makefile @@ -73,9 +73,9 @@ endif ci: ifeq ($(GIT_REF),refs/heads/main) - $(MAKE) -e profile=release -e channel=unstable package + $(MAKE) -e profile=release -e channel=unstable $(target) else ifneq (,$(findstring refs/tags/,$(GIT_REF))) - $(MAKE) -e profile=release -e channel=$(subst refs/tags/,,$(GIT_REF)) package + $(MAKE) -e profile=release -e channel=$(subst refs/tags/,,$(GIT_REF)) $(target) endif .PHONY: default build $(architectures) rpm package prepare set_rust ci release -- cgit