diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-16 23:27:47 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-03-16 23:27:47 +0100 |
| commit | 82ea1228dcc7f4d088043493512fa8f3a40bfb52 (patch) | |
| tree | f5270e38a67da1c58ee70acfc01e82351dbb7efd /Makefile | |
| parent | 9ec2c51a945194cfff56574f37adac827c970b4e (diff) | |
Attempt multiple builds instead of cross-compiling
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |