diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-01-26 16:59:20 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-01-26 16:59:20 +0100 |
| commit | aece0e58f930f908dd06181c04ed40a1da4ee9c8 (patch) | |
| tree | f7c71baf3ea12d2eba3106876b07e288cbad266c /Makefile | |
| parent | b09ac886b7c6ca5f2248de1798a121b6d48bd858 (diff) | |
Add sourcehut build
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 27 |
1 files changed, 15 insertions, 12 deletions
@@ -3,7 +3,6 @@ target = $(shell rustc -vV | grep host | awk '{print $$2}') architectures := x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu app_name := lrc long_app_name := lyricli -host_architecture := $(target) default: build @@ -14,15 +13,20 @@ prepare: rustup target add $(target) build: prepare -# I need an actually configurable way to make this work. Right now i'm only -# cross compiling in the CI, and I know what I'm running, but -ifeq ($(host_architecture), x86_64-unknown-linux-gnu) -ifeq ($(target), aarch64-unknown-linux-gnu) - LD_LIBRARY_PATH=/usr/local/aarch64-linux-gnu/lib:${LD_LIBRARY_PATH} -endif -endif @export $$(cat .env | xargs) > /dev/null 2>&1 && cargo build --profile $(profile) --target $(target) +test: + cargo test + +coverage: + cargo tarpaulin + +format: + cargo fmt && cargo clippy --fix + +lint: + cargo fmt -- --check && cargo clippy + release: rpm tar deb @$(eval filename := $(app_name)-$(target)-$(channel)) @@ -70,12 +74,11 @@ else $(MAKE) -e profile=release -e architectures='$(mac_architectures)' -e channel=$(tag) package endif - -ci: +ci: lint coverage ifeq ($(GIT_REF),refs/heads/main) - $(MAKE) -e profile=release -e channel=unstable $(target) + $(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)) $(target) + $(MAKE) -e profile=release -e channel=$(subst refs/tags/,,$(GIT_REF)) package endif .PHONY: default build $(architectures) rpm package prepare set_rust ci release |