2022-04-15 05:18:49 +02:00
|
|
|
forcetest:
|
|
|
|
go clean -testcache
|
|
|
|
HISHTORY_TEST=1 go test -p 1 ./...
|
2022-04-16 03:12:26 +02:00
|
|
|
|
2022-01-11 03:50:10 +01:00
|
|
|
test:
|
2022-03-30 06:56:28 +02:00
|
|
|
HISHTORY_TEST=1 go test -p 1 ./...
|
2022-01-11 03:50:10 +01:00
|
|
|
|
2022-04-16 03:12:26 +02:00
|
|
|
acttest:
|
2022-04-20 06:05:54 +02:00
|
|
|
act push -j test -e .github/push_event.json --reuse
|
2022-04-16 03:12:26 +02:00
|
|
|
|
2022-04-09 07:12:00 +02:00
|
|
|
release:
|
2022-04-17 20:44:57 +02:00
|
|
|
# Bump the version
|
2022-04-09 07:57:53 +02:00
|
|
|
expr `cat VERSION` + 1 > VERSION
|
2022-04-09 08:07:44 +02:00
|
|
|
git add VERSION
|
2022-04-17 20:44:57 +02:00
|
|
|
git commit -m "Release: start releasing v0.`cat VERSION`" --no-verify
|
2022-04-26 07:21:17 +02:00
|
|
|
git push && git push --tags
|
2022-04-17 20:44:57 +02:00
|
|
|
# Release linux-amd64
|
|
|
|
cp .slsa-goreleaser-linux-amd64.yml .slsa-goreleaser.yml
|
|
|
|
git add .slsa-goreleaser.yml
|
|
|
|
git commit -m "Release linux-amd64 v0.`cat VERSION`" --no-verify
|
|
|
|
git tag v0.`cat VERSION`-linux-amd64
|
2022-04-26 07:21:17 +02:00
|
|
|
git push && git push --tags
|
2022-04-17 20:44:57 +02:00
|
|
|
# Release darwin-amd64
|
|
|
|
cp .slsa-goreleaser-darwin-amd64.yml .slsa-goreleaser.yml
|
|
|
|
git add .slsa-goreleaser.yml
|
|
|
|
git commit -m "Release darwin-amd64 v0.`cat VERSION`" --no-verify
|
|
|
|
git tag v0.`cat VERSION`-darwin-amd64
|
2022-04-26 07:21:17 +02:00
|
|
|
git push && git push --tags
|
2022-04-17 20:44:57 +02:00
|
|
|
# Release darwin-arm64
|
|
|
|
cp .slsa-goreleaser-darwin-arm64.yml .slsa-goreleaser.yml
|
|
|
|
git add .slsa-goreleaser.yml
|
|
|
|
git commit -m "Release darwin-arm64 v0.`cat VERSION`" --no-verify
|
|
|
|
git tag v0.`cat VERSION`-darwin-arm64
|
2022-04-26 07:21:17 +02:00
|
|
|
git push && git push --tags
|
2022-04-17 20:44:57 +02:00
|
|
|
# Clean up by removing .slsa-goreleaser.yml
|
|
|
|
rm .slsa-goreleaser.yml
|
|
|
|
git add .slsa-goreleaser.yml
|
|
|
|
git commit -m "Release: finish releasing v0.`cat VERSION`" --no-verify
|
2022-04-26 07:21:17 +02:00
|
|
|
git push && git push --tags
|
2022-04-17 21:30:46 +02:00
|
|
|
# Tag the release
|
|
|
|
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:12:00 +02:00
|
|
|
|
2022-04-09 07:57:53 +02:00
|
|
|
build-static:
|
2022-04-09 08:56:02 +02:00
|
|
|
docker build -t gcr.io/dworken-k8s/hishtory-static -f backend/web/caddy/Dockerfile .
|
2022-04-03 07:27:20 +02:00
|
|
|
|
|
|
|
build-api:
|
2022-04-09 08:56:02 +02:00
|
|
|
docker build -t gcr.io/dworken-k8s/hishtory-api -f backend/server/Dockerfile .
|
2022-01-11 03:50:10 +01:00
|
|
|
|
2022-04-03 07:27:20 +02:00
|
|
|
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'`\"}}}}}}"
|
2022-04-03 07:27:20 +02:00
|
|
|
|
|
|
|
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'`\"}}}}}}"
|
2022-04-07 07:43:07 +02:00
|
|
|
|
2022-04-09 08:07:44 +02:00
|
|
|
deploy: release deploy-static deploy-api
|
2022-04-08 07:53:39 +02:00
|
|
|
|