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-09 07:12:00 +02:00
|
|
|
release:
|
2022-04-09 07:57:53 +02:00
|
|
|
expr `cat VERSION` + 1 > VERSION
|
2022-04-09 08:07:44 +02:00
|
|
|
git tag v0.`cat VERSION`
|
|
|
|
git add VERSION
|
|
|
|
git commit -m "Bump hishtory version"
|
2022-04-09 08:08:53 +02:00
|
|
|
git push
|
2022-04-09 07:12:00 +02:00
|
|
|
git push --tags
|
|
|
|
|
2022-04-09 07:57:53 +02:00
|
|
|
build-static:
|
2022-01-11 03:50:10 +01:00
|
|
|
docker build -t gcr.io/dworken-k8s/hishtory-static -f web/caddy/Dockerfile .
|
2022-04-03 07:27:20 +02:00
|
|
|
|
|
|
|
build-api:
|
2022-03-30 06:56:28 +02:00
|
|
|
docker build -t gcr.io/dworken-k8s/hishtory-api -f 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
|
|
|
|