hishtory/Makefile

53 lines
2.7 KiB
Makefile
Raw Normal View History

2024-02-04 03:09:53 +01:00
help: ## Show this help.
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'
2024-08-11 21:26:09 +02:00
fmt: ## Format all files
2024-08-11 21:19:41 +02:00
gofumpt -l -w -extra .
gci write --custom-order -s standard -s 'Prefix(github.com/ddworken/hishtory)' -s default .
2024-02-04 03:11:20 +01:00
local-install: ## Build and install hishtory locally from the current directory
go build; ./hishtory install
2024-02-04 03:09:53 +01:00
forcetest: ## Force running all tests without a test cache
go clean -testcache
make test
2024-02-04 03:09:53 +01:00
test: ## Run all tests
2024-08-11 21:19:41 +02:00
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 export" -- -p 1 -timeout 90m
2024-02-04 03:09:53 +01:00
ftest: ## Run a specific test specified via `make ftest FILTER=TestParam/testTui/color`
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
fbench: ## Run a specific benchmark test specified via `make fbench FILTER=BenchmarkQuery`
HISHTORY_FILTERED_TEST=1 TZ='America/Los_Angeles' HISHTORY_TEST=1 HISHTORY_SKIP_INIT_IMPORT=1 go test -benchmem -bench "$(FILTER)" -timeout 60m ./...
2024-02-04 03:09:53 +01:00
release: ## [ddworken only] Release the latest version on Github
# 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
2024-08-11 21:19:41 +02:00
git push
gh release create v0.`cat VERSION` --generate-notes
2022-04-26 07:21:17 +02:00
git push && git push --tags
2024-08-11 21:19:41 +02:00
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 ."
2024-08-11 21:19:41 +02:00
build-api: ## [ddworken only] Build the API for api.hishtory.dev
rm hishtory server || true
docker build --build-arg GOARCH=amd64 --tag gcr.io/dworken-k8s/hishtory-api --file backend/server/Dockerfile .
2024-08-11 21:19:41 +02:00
deploy-static: ## [ddworken only] Build and deploy the server for hishtory.dev
deploy-static: build-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"
2024-08-11 21:19:41 +02:00
deploy-api: ## [ddworken only] Build and deploy the API server for api.hishtory.dev
deploy-api: build-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"
2024-08-11 21:19:41 +02:00
deploy: ## [ddworken only] Build and deploy all backend services
deploy: release deploy-static deploy-api