2 target = $(shell rustc -vV | grep host | awk '{print $$2}')
3 architectures := x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu
12 rustup target add $(target)
15 cargo build --profile $(profile) --target $(target)
18 rsync -avz $(app_name)-$(target)-$(channel).tar.gz deploy@build.r.bdr.sh:/srv/http/build.r.bdr.sh/$(app_name)
22 $(MAKE) -e channel=$(channel) -e target=$@ release
24 $(MAKE) -e target=$@ build
30 tar -czvf $(app_name)-$(target)-$(channel).tar.gz -C target/$(target)/$(profile)/ $(app_name)
32 package: $(architectures)
35 ifeq ($(GIT_REF),refs/heads/main)
36 $(MAKE) -e profile=release -e channel=unstable package
37 else ifneq (,$(findstring refs/tags/,$(GIT_REF)))
38 $(MAKE) -e profile=release -e channel=$(subst refs/tags/,,$(GIT_REF)) package
41 .PHONY: default build $(architectures) rpm package prepare set_rust ci release