mirror of
https://github.com/prymitive/karma
synced 2026-02-13 20:59:53 +00:00
68 lines
2.2 KiB
Makefile
68 lines
2.2 KiB
Makefile
include make/vars.mk
|
|
|
|
GOBIN := $(shell go env GOBIN)
|
|
ifeq ($(GOBIN),)
|
|
GOBIN = $(shell go env GOPATH)/bin
|
|
endif
|
|
|
|
ui/dist/index.html: $(call rwildcard, ui/src ui/package.json ui/package-lock.json, *)
|
|
@$(MAKE) -C ui build
|
|
|
|
.DEFAULT_GOAL := $(NAME)
|
|
$(NAME): go.mod go.sum $(SOURCES_GO) ui/dist/index.html
|
|
go build -trimpath -modcacherw -ldflags "-X main.version=$(VERSION) -s -w" ./cmd/karma
|
|
|
|
.PHONY: test-go
|
|
test-go:
|
|
@rm -f profile.*
|
|
$(ENV) ./scripts/test-unit.sh
|
|
$(ENV) ./scripts/test-main.sh
|
|
$(ENV) ./scripts/gocovmerge.sh
|
|
|
|
GOBENCHMARKCOUNT := 10
|
|
.PHONY: benchmark-go
|
|
benchmark-go:
|
|
@env GOMAXPROCS=2 go test -count=$(GOBENCHMARKCOUNT) -run=NONE -bench=. -benchmem ./...
|
|
|
|
$(GOBIN)/benchstat: tools/benchstat/go.mod tools/benchstat/go.sum
|
|
@go install -modfile=tools/benchstat/go.mod golang.org/x/perf/cmd/benchstat
|
|
benchmark-compare-go: $(GOBIN)/benchstat
|
|
@$(GOBIN)/benchstat main.txt new.txt
|
|
|
|
$(GOBIN)/golangci-lint: tools/golangci-lint/go.mod tools/golangci-lint/go.sum
|
|
go install -modfile=tools/golangci-lint/go.mod github.com/golangci/golangci-lint/v2/cmd/golangci-lint
|
|
.PHONY: lint-go
|
|
lint-go: $(GOBIN)/golangci-lint
|
|
$(ENV) golangci-lint run -v
|
|
|
|
$(GOBIN)/goimports: tools/goimports/go.mod tools/goimports/go.sum
|
|
go install -modfile=tools/goimports/go.mod golang.org/x/tools/cmd/goimports
|
|
$(GOBIN)/gofumpt: tools/gofumpt/go.mod tools/gofumpt/go.sum
|
|
go install -modfile=tools/gofumpt/go.mod mvdan.cc/gofumpt
|
|
.PHONY: format-go
|
|
format-go: $(GOBIN)/goimports $(GOBIN)/gofumpt
|
|
gofumpt -extra -w .
|
|
goimports -local github.com/prymitive/karma -w .
|
|
|
|
.PHONY: download-deps-go
|
|
download-deps-go:
|
|
@for f in $(wildcard tools/*/go.mod) ; do echo ">>> $$f" && cd $(CURDIR)/`dirname "$$f"` && go mod download && cd $(CURDIR) ; done
|
|
go mod download
|
|
|
|
.PHONY: openapi-client
|
|
openapi-client:
|
|
for f in $(wildcard internal/mapper/*/Dockerfile) ; do $(MAKE) -C `dirname "$$f"` ; done
|
|
|
|
.PHONY: mock-assets
|
|
mock-assets:
|
|
rm -fr ui/dist
|
|
mkdir ui/dist
|
|
cp ui/public/* ui/dist/
|
|
cp ui/index.html ui/dist/
|
|
mkdir ui/dist/assets
|
|
touch ui/dist/assets/main.js
|
|
|
|
.PHONY: tools-go-mod-tidy
|
|
tools-go-mod-tidy:
|
|
@for f in $(wildcard tools/*/go.mod) ; do echo ">>> $$f" && cd $(CURDIR)/`dirname "$$f"` && go mod tidy && cd $(CURDIR) ; done
|