mirror of
https://github.com/ddworken/hishtory.git
synced 2025-06-24 14:01:46 +02:00
Add 'make help' for #165
This commit is contained in:
parent
412e5a2beb
commit
c10abc645b
22
Makefile
22
Makefile
@ -1,18 +1,18 @@
|
|||||||
forcetest:
|
help: ## Show this help.
|
||||||
|
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'
|
||||||
|
|
||||||
|
forcetest: ## Force running all tests without a test cache
|
||||||
go clean -testcache
|
go clean -testcache
|
||||||
make test
|
make test
|
||||||
|
|
||||||
test:
|
test: ## Run all tests
|
||||||
TZ='America/Los_Angeles' HISHTORY_TEST=1 HISHTORY_SKIP_INIT_IMPORT=1 gotestsum --packages ./... --rerun-fails=10 --rerun-fails-max-failures=30 --format testname --jsonfile /tmp/testrun.json --post-run-command "go run client/posttest/main.go" -- -p 1 -timeout 90m
|
TZ='America/Los_Angeles' HISHTORY_TEST=1 HISHTORY_SKIP_INIT_IMPORT=1 gotestsum --packages ./... --rerun-fails=10 --rerun-fails-max-failures=30 --format testname --jsonfile /tmp/testrun.json --post-run-command "go run client/posttest/main.go" -- -p 1 -timeout 90m
|
||||||
|
|
||||||
ftest:
|
ftest: ## Run a specific test specified via `make ftest FILTER=TestParam/testTui/color`
|
||||||
go clean -testcache
|
go clean -testcache
|
||||||
HISHTORY_FILTERED_TEST=1 TZ='America/Los_Angeles' HISHTORY_TEST=1 HISHTORY_SKIP_INIT_IMPORT=1 gotestsum --packages ./... --rerun-fails=0 --format testname -- -p 1 -run "$(FILTER)" -timeout 60m
|
HISHTORY_FILTERED_TEST=1 TZ='America/Los_Angeles' HISHTORY_TEST=1 HISHTORY_SKIP_INIT_IMPORT=1 gotestsum --packages ./... --rerun-fails=0 --format testname -- -p 1 -run "$(FILTER)" -timeout 60m
|
||||||
|
|
||||||
acttest:
|
release: ## [ddworken only] Release the latest version on Github
|
||||||
act push -j test -e .github/push_event.json --reuse --container-architecture linux/amd64
|
|
||||||
|
|
||||||
release:
|
|
||||||
# Bump the version
|
# Bump the version
|
||||||
expr `cat VERSION` + 1 > VERSION
|
expr `cat VERSION` + 1 > VERSION
|
||||||
git add VERSION
|
git add VERSION
|
||||||
@ -21,20 +21,22 @@ release:
|
|||||||
gh release create v0.`cat VERSION` --generate-notes
|
gh release create v0.`cat VERSION` --generate-notes
|
||||||
git push && git push --tags
|
git push && git push --tags
|
||||||
|
|
||||||
build-static:
|
build-static: ## [ddworken only] Build the server for hishtory.dev
|
||||||
ssh server "cd ~/code/hishtory/; git pull; docker build --build-arg GOARCH=amd64 --tag gcr.io/dworken-k8s/hishtory-static --file backend/web/caddy/Dockerfile ."
|
ssh server "cd ~/code/hishtory/; git pull; docker build --build-arg GOARCH=amd64 --tag gcr.io/dworken-k8s/hishtory-static --file backend/web/caddy/Dockerfile ."
|
||||||
|
|
||||||
build-api:
|
build-api: ## [ddworken only] Build the API for api.hishtory.dev
|
||||||
rm hishtory server || true
|
rm hishtory server || true
|
||||||
docker build --build-arg GOARCH=amd64 --tag gcr.io/dworken-k8s/hishtory-api --file backend/server/Dockerfile .
|
docker build --build-arg GOARCH=amd64 --tag gcr.io/dworken-k8s/hishtory-api --file backend/server/Dockerfile .
|
||||||
|
|
||||||
|
deploy-static: ## [ddworken only] Build and deploy the server for hishtory.dev
|
||||||
deploy-static: build-static
|
deploy-static: build-static
|
||||||
ssh server "docker push gcr.io/dworken-k8s/hishtory-static"
|
ssh server "docker push gcr.io/dworken-k8s/hishtory-static"
|
||||||
ssh monoserver "cd ~/infra/ && docker compose pull hishtory-static && docker compose rm -svf hishtory-static && docker compose up -d hishtory-static"
|
ssh monoserver "cd ~/infra/ && docker compose pull hishtory-static && docker compose rm -svf hishtory-static && docker compose up -d hishtory-static"
|
||||||
|
|
||||||
|
deploy-api: ## [ddworken only] Build and deploy the API server for api.hishtory.dev
|
||||||
deploy-api: build-api
|
deploy-api: build-api
|
||||||
docker push gcr.io/dworken-k8s/hishtory-api
|
docker push gcr.io/dworken-k8s/hishtory-api
|
||||||
ssh monoserver "cd ~/infra/ && docker compose pull hishtory-api && docker compose up -d --no-deps hishtory-api"
|
ssh monoserver "cd ~/infra/ && docker compose pull hishtory-api && docker compose up -d --no-deps hishtory-api"
|
||||||
|
|
||||||
|
deploy: ## [ddworken only] Build and deploy all backend services
|
||||||
deploy: release deploy-static deploy-api
|
deploy: release deploy-static deploy-api
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user