keyfork/Makefile

41 lines
1.8 KiB
Makefile
Raw Normal View History

BASE_REF ?= main
2024-01-18 23:47:09 +00:00
HEAD_REF ?= HEAD
define clone-repo
mkdir -p $(1)
git -C $(1) init
git -C $(1) remote add origin $(2) || true
git -C $(1) fetch origin $(3)
git -C $(1) -c advice.detachedHead=false checkout $(3)
test `git -C $(1) rev-parse HEAD` = $(3)
endef
.PHONY: review
review:
2024-01-18 23:47:09 +00:00
$(eval BASE_REF_PARSED := $(shell git rev-parse $(BASE_REF)))
$(eval HEAD_REF_PARSED := $(shell git rev-parse $(HEAD_REF)))
@echo "Ensuring current HEAD_REF is not BASE_REF"
2024-01-18 23:47:09 +00:00
test "$(BASE_REF_PARSED)" != "$(HEAD_REF_PARSED)"
@echo "Verifying if any changes happened in Cargo.lock that require review; otherwise, use `git difftool` directly"
test "$(shell git show $(BASE_REF_PARSED):Cargo.lock | sha256sum)" != "$(shell git show $(HEAD_REF_PARSED):Cargo.lock | sha256sum)"
$(eval TEMP_REPO := $(shell mktemp -d))
2024-01-18 23:47:09 +00:00
$(call clone-repo,$(TEMP_REPO),$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))),$(BASE_REF_PARSED))
# Unstage current commit before refreeze
git -C $(TEMP_REPO) reset --hard 'HEAD^1'
# Fetch files for BASE_REF
2024-01-18 23:47:09 +00:00
cd $(TEMP_REPO) && CARGO_HOME=$(TEMP_REPO)/cargo-home cargo fetch
echo "cargo-home/registry/cache" >> $(TEMP_REPO)/.gitignore
echo "cargo-home/registry/index" >> $(TEMP_REPO)/.gitignore
echo "cargo-home/registry/CACHEDIR.TAG" >> $(TEMP_REPO)/.gitignore
git -C $(TEMP_REPO) add .
git -C $(TEMP_REPO) commit --no-gpg-sign -m "base ref: $(BASE_REF)"
2024-01-18 23:47:09 +00:00
# git -C $(TEMP_REPO) ls-files -z | (cd $(TEMP_REPO); xargs -0 -n1 rm)
git -C $(TEMP_REPO) fetch origin $(HEAD_REF_PARSED)
git -C $(TEMP_REPO) merge --no-commit $(HEAD_REF_PARSED)
rm -rf $(TEMP_REPO)/cargo-home/registry/src
# Fetch files for HEAD_REF
2024-01-18 23:47:09 +00:00
cd $(TEMP_REPO) && CARGO_HOME=$(TEMP_REPO)/cargo-home cargo fetch
git -C $(TEMP_REPO) add -A .
git -C $(TEMP_REPO) difftool HEAD || true
2024-01-18 23:47:09 +00:00
# rm -rf $(TEMP_REPO)