mirror of https://github.com/VinGarcia/ksql.git
92 lines
2.9 KiB
Makefile
92 lines
2.9 KiB
Makefile
args=
|
|
path=./...
|
|
|
|
GOBIN=$(shell go env GOPATH)/bin
|
|
|
|
TIME=5s
|
|
|
|
# If your tests are timing out you probably need to run
|
|
# the recipe below once just so all images are cached:
|
|
pre-download-all-images:
|
|
docker pull postgres:14.0
|
|
docker pull mcr.microsoft.com/mssql/server:2022-latest
|
|
docker pull mariadb:10.8
|
|
|
|
test: setup go-mod-tidy
|
|
$(GOBIN)/richgo test $(path) $(args)
|
|
@( cd benchmarks ; $(GOBIN)/richgo test $(path) $(args) )
|
|
@( cd examples ; $(GOBIN)/richgo test $(path) $(args) )
|
|
@( cd adapters/kpgx ; $(GOBIN)/richgo test $(path) $(args) -timeout=60s )
|
|
@( cd adapters/kpgx5 ; $(GOBIN)/richgo test $(path) $(args) -timeout=60s )
|
|
@( cd adapters/kmysql ; $(GOBIN)/richgo test $(path) $(args) -timeout=60s )
|
|
@( cd adapters/kpostgres ; $(GOBIN)/richgo test $(path) $(args) -timeout=60s )
|
|
@( cd adapters/ksqlserver ; $(GOBIN)/richgo test $(path) $(args) -timeout=60s )
|
|
@( cd adapters/ksqlite3 ; $(GOBIN)/richgo test $(path) $(args) -timeout=60s )
|
|
@( cd adapters/modernc-ksqlite ; $(GOBIN)/richgo test $(path) $(args) -timeout=60s )
|
|
|
|
benchmark.tmp: bench
|
|
bench: go-mod-tidy
|
|
@make --no-print-directory -C benchmarks TIME=$(TIME) | tee benchmark.tmp
|
|
@echo "Benchmark executed at: $$(date --iso)" | tee -a benchmark.tmp
|
|
@echo "Benchmark executed on commit: $$(git rev-parse HEAD)" | tee -a benchmark.tmp
|
|
|
|
readme: benchmark.tmp readme.template.md
|
|
go run scripts/build-readme-from-template.go readme.template.md
|
|
|
|
lint: setup go-mod-tidy
|
|
@$(GOBIN)/staticcheck $(path) $(args)
|
|
@go vet $(path) $(args)
|
|
@make --no-print-directory -C benchmarks lint
|
|
@echo "StaticCheck & Go Vet found no problems on your code!"
|
|
|
|
# Run go mod tidy for all submodules:
|
|
tidy: go-mod-tidy
|
|
go-mod-tidy:
|
|
find . -name go.mod -execdir go mod tidy \;
|
|
|
|
# Create new tag and update adapters to use a new ksql tag:
|
|
version=v1.12.3
|
|
update:
|
|
git tag $(version)
|
|
git push origin master $(version)
|
|
find adapters -name go.mod -execdir go get github.com/vingarcia/ksql@$(version) \;
|
|
make go-mod-tidy
|
|
git commit -am 'Update adapters to use version $(version)'
|
|
git push origin master
|
|
for dir in $$(ls adapters); do git tag adapters/$$dir/$(version); done
|
|
for dir in $$(ls adapters); do git push origin adapters/$$dir/$(version); done
|
|
|
|
gen: mock
|
|
mock: setup
|
|
$(GOBIN)/mockgen -package=exampleservice -source=contracts.go -destination=examples/example_service/mocks.go
|
|
|
|
setup: $(GOBIN)/richgo $(GOBIN)/staticcheck $(GOBIN)/mockgen go.work
|
|
|
|
go.work:
|
|
go work init
|
|
go work use -r .
|
|
|
|
$(GOBIN)/richgo:
|
|
go install github.com/kyoh86/richgo@latest
|
|
|
|
$(GOBIN)/staticcheck:
|
|
go install honnef.co/go/tools/cmd/staticcheck@latest
|
|
|
|
$(GOBIN)/mockgen:
|
|
@# (Gomock is used on examples/example_service)
|
|
go install github.com/golang/mock/mockgen@latest
|
|
|
|
# Running examples:
|
|
example_service: mock
|
|
$(GOBIN)/richgo test ./examples/example_service/.
|
|
|
|
example_logger: mock
|
|
go run ./examples/logging_queries/.
|
|
|
|
example_overview: mock
|
|
go run ./examples/overview/.
|
|
|
|
PG_URL=
|
|
pgxsupport:
|
|
go run ./examples/pgxsupport/.
|