hishtory/Makefile

36 lines
1.1 KiB
Makefile
Raw Normal View History

forcetest:
go clean -testcache
HISHTORY_TEST=1 go test -p 1 ./...
test:
HISHTORY_TEST=1 go test -p 1 ./...
acttest:
act push -j test -e .github/push_event.json --reuse --container-architecture linux/amd64
release:
# Bump the version
2022-04-09 07:57:53 +02:00
expr `cat VERSION` + 1 > VERSION
git add VERSION
git commit -m "Release v0.`cat VERSION`" --no-verify
git push
gh release create v0.`cat VERSION` --generate-notes
2022-04-26 07:21:17 +02:00
git push && git push --tags
2022-04-09 07:57:53 +02:00
build-static:
docker build -t gcr.io/dworken-k8s/hishtory-static -f backend/web/caddy/Dockerfile .
build-api:
docker build -t gcr.io/dworken-k8s/hishtory-api -f backend/server/Dockerfile .
deploy-static: build-static
2022-04-02 06:25:07 +02:00
docker push gcr.io/dworken-k8s/hishtory-static
kubectl patch deployment hishtory-static -p "{\"spec\":{\"template\":{\"metadata\":{\"labels\":{\"ts\":\"`date|sed -e 's/ /_/g'|sed -e 's/:/-/g'`\"}}}}}}"
deploy-api: build-api
docker push gcr.io/dworken-k8s/hishtory-api
kubectl patch deployment hishtory-api -p "{\"spec\":{\"template\":{\"metadata\":{\"labels\":{\"ts\":\"`date|sed -e 's/ /_/g'|sed -e 's/:/-/g'`\"}}}}}}"
deploy: release deploy-static deploy-api
2022-04-08 07:53:39 +02:00