aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2024-03-13 22:43:47 +0100
committerRuben Beltran del Rio <git@r.bdr.sh>2024-03-13 22:43:47 +0100
commit738ec06d26a2a19bdda8a992d2250e731d954631 (patch)
treec963a76fc51d5d4712026efaf9e5ac6accba9526 /Makefile
parent4adf8d5182b7ad3720e3160e0f4530547625dbce (diff)
Add rust implementation test
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile86
1 files changed, 47 insertions, 39 deletions
diff --git a/Makefile b/Makefile
index 34afb77..3416abd 100644
--- a/Makefile
+++ b/Makefile
@@ -1,51 +1,59 @@
-configuration = debug
-build_path = .build
+profile := dev
+target = $(shell rustc -vV | grep host | awk '{print $$2}')
+architectures := x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu
+app_name := blog
-# These are used to rename the executable to lrc without renaming the package
-source_binary_name = lyricli
-target_binary_name = lrc
-install_path = /usr/local/bin
-source_binary_path = $(build_path)/$(configuration)/$(source_binary_name)
-install_binary_path = $(install_path)/$(target_binary_name)
-swift_version = 5.8.0
-architecture = $(shell uname -m)
+default: build
-# Default to release configuration on install
-install: configuration = release
+set_rust:
+ rustup default stable
-default: build
+prepare:
+ rustup target add $(target)
-build:
- swift build --build-path $(build_path) --configuration $(configuration) --arch $(architecture) -Xswiftc -cross-module-optimization
+build: prepare
+ @export $$(cat .env | xargs) > /dev/null 2>&1 && cargo build --profile $(profile) --target $(target)
-install: build
- sudo cp $(source_binary_path) $(install_binary_path)
+release: rpm tar deb
+ @$(eval filename := $(app_name)-$(target)-$(channel))
-test: build
- swift test
+$(architectures):
+ifneq ($(channel),)
+ $(MAKE) -e channel=$(channel) -e target=$@ release
+else
+ $(MAKE) -e target=$@ build
+endif
-lint:
- cd Sources && swiftlint
+deb: build
+ @$(eval filename := $(app_name)-$(target)-$(channel))
+ cargo deb --profile $(profile) --target $(target)
+ mv target/$(target)/debian/*.deb $(filename).deb
+ sha256sum $(filename).deb > $(filename).deb.sha256
+ rsync -avz $(filename).deb deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
+ rsync -avz $(filename).deb.sha256 deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
-document: build
- sourcekitten doc --spm-module $(source_binary_name) > $(build_path)/$(source_binary_name).json
- jazzy \
- -s $(build_path)/$(source_binary_name).json \
- --readme README.md \
- --clean \
- --author Lyricli \
- --author_url https://gitlab.com/lyricli \
- --github_url https://gitlab.com/lyricli/lyricli \
- --module-version 1.0.0 \
- --module Lyricli \
+rpm: build
+ @$(eval filename := $(app_name)-$(target)-$(channel))
+ cargo generate-rpm --profile $(profile) --target $(target)
+ mv target/$(target)/generate-rpm/*.rpm $(filename).rpm
+ sha256sum $(filename).rpm > $(filename).rpm.sha256
+ rsync -avz $(filename).rpm deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
+ rsync -avz $(filename).rpm.sha256 deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
-clean:
- swift package clean
+tar: build
+ @$(eval filename := $(app_name)-$(target)-$(channel))
+ tar -czvf $(filename).tar.gz -C target/$(target)/$(profile)/ $(app_name)
+ sha256sum $(filename).tar.gz > $(filename).tar.gz.sha256
+ rsync -avz $(filename).tar.gz deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
+ rsync -avz $(filename).tar.gz.sha256 deploy@conchos.unlimited.pizza:/srv/http/build.r.bdr.sh/$(app_name)
-docker-build:
- docker build --force-rm --build-arg swift_version=$(swift_version) -t lyriclitest/swift:$(swift_version) .
+package: $(architectures)
-docker-push: docker-build
- docker push lyriclitest/swift:$(swift_version)
+ci:
+ifeq ($(GIT_REF),refs/heads/main)
+ $(MAKE) -e profile=release -e channel=unstable package
+else ifneq (,$(findstring refs/tags/,$(GIT_REF)))
+ $(MAKE) -e profile=release -e channel=$(subst refs/tags/,,$(GIT_REF)) package
+endif
-.PHONY: build install test clean lint docker-build docker-push
+.PHONY: default build $(architectures) rpm package prepare set_rust ci release