]> git.r.bdr.sh - rbdr/blog/blob - Makefile
Set the release
[rbdr/blog] / Makefile
1 profile := dev
2 target = $(shell rustc -vV | grep host | awk '{print $$2}')
3 architectures := x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu
4 app_name := blog
5
6 default: build
7
8 set_rust:
9 rustup default stable
10
11 prepare:
12 rustup target add $(target)
13
14 build: prepare
15 cargo build --profile $(profile) --target $(target)
16
17 release: rpm tar
18 @$(eval filename := $(app_name)-$(target)-$(channel))
19
20 $(architectures):
21 ifneq ($(channel),)
22 $(MAKE) -e channel=$(channel) -e target=$@ release
23 else
24 $(MAKE) -e target=$@ build
25 endif
26
27 rpm: build
28 cargo generate-rpm --profile $(profile) --target $(target) -s'release = "$(channel)"'
29 rsync -avz target/$(target)/generate-rpm/*.rpm deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
30
31 tar: build
32 @$(eval filename := $(app_name)-$(target)-$(channel))
33 tar -czvf $(filename).tar.gz -C target/$(target)/$(profile)/ $(app_name)
34 sha256sum $(filename).tar.gz > $(filename).sha256
35 rsync -avz $(filename).tar.gz deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
36 rsync -avz $(filename).sha256 deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
37
38 package: $(architectures)
39
40 ci:
41 ifeq ($(GIT_REF),refs/heads/main)
42 $(MAKE) -e profile=release -e channel=unstable package
43 else ifneq (,$(findstring refs/tags/,$(GIT_REF)))
44 $(MAKE) -e profile=release -e channel=$(subst refs/tags/,,$(GIT_REF)) package
45 endif
46
47 .PHONY: default build $(architectures) rpm package prepare set_rust ci release