mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-01-27 18:18:41 +00:00
21 lines
846 B
Makefile
21 lines
846 B
Makefile
OUT=../../_out/repos/apps
|
|
TMP=../../_out/repos/apps/historical
|
|
|
|
repo:
|
|
rm -rf "$(OUT)"
|
|
mkdir -p "$(OUT)"
|
|
awk '$$3 != "HEAD" {print "mkdir -p $(TMP)/" $$1 "-" $$2}' versions_map | sh -ex
|
|
awk '$$3 != "HEAD" {print "git archive " $$3 " " $$1 " | tar -xf- --strip-components=1 -C $(TMP)/" $$1 "-" $$2 }' versions_map | sh -ex
|
|
helm package -d "$(OUT)" $$(find . $(TMP) -mindepth 2 -maxdepth 2 -name Chart.yaml | awk 'sub("/Chart.yaml", "")' | sort -V)
|
|
cd "$(OUT)" && helm repo index . --url http://cozystack.cozy-system.svc/repos/apps
|
|
rm -rf "$(TMP)"
|
|
|
|
fix-chartnames:
|
|
find . -maxdepth 2 -name Chart.yaml | awk -F/ '{print $$2}' | while read i; do sed -i "s/^name: .*/name: $$i/" "$$i/Chart.yaml"; done
|
|
|
|
gen-versions-map: fix-chartnames
|
|
../../hack/gen_versions_map.sh
|
|
|
|
check-version-map: gen-versions-map
|
|
git diff --exit-code -- versions_map
|