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)
21 cargo tarpaulin --fail-under 100
24 cargo fmt && cargo clippy --fix
27 cargo fmt -- --check && cargo clippy
33 ifneq (,$(findstring refs/tags/,$(GIT_REF)))
37 .PHONY: default set_rust prepare build test coverage format lint release ci