2019-10-01 18:16:45 +02:00
|
|
|
export GO111MODULE=on
|
2019-07-03 01:21:24 +02:00
|
|
|
|
2019-10-29 17:45:48 +02:00
|
|
|
EXAMPLES := $(shell ./get_main_pkgs.sh ./example)
|
2019-09-19 18:16:09 +02:00
|
|
|
|
2019-08-02 19:44:32 +02:00
|
|
|
# All source code and documents. Used in spell check.
|
|
|
|
ALL_DOCS := $(shell find . -name '*.md' -type f | sort)
|
2019-09-19 18:16:09 +02:00
|
|
|
# All directories with go.mod files. Used in go mod tidy.
|
2019-09-23 20:04:55 +02:00
|
|
|
ALL_GO_MOD_DIRS := $(shell find . -type f -name 'go.mod' -exec dirname {} \; | sort)
|
2019-08-02 19:44:32 +02:00
|
|
|
|
2019-07-03 01:21:24 +02:00
|
|
|
GOTEST=go test
|
2019-10-29 22:27:22 +02:00
|
|
|
GOTEST_OPT?=-v -timeout 30s
|
|
|
|
GOTEST_OPT_WITH_RACE = $(GOTEST_OPT) -race
|
2019-07-03 01:21:24 +02:00
|
|
|
GOTEST_OPT_WITH_COVERAGE = $(GOTEST_OPT) -coverprofile=coverage.txt -covermode=atomic
|
|
|
|
|
|
|
|
.DEFAULT_GOAL := precommit
|
|
|
|
|
2019-06-19 02:09:49 +02:00
|
|
|
.PHONY: precommit
|
|
|
|
|
|
|
|
TOOLS_DIR := ./.tools
|
|
|
|
|
|
|
|
$(TOOLS_DIR)/golangci-lint: go.mod go.sum tools.go
|
|
|
|
go build -o $(TOOLS_DIR)/golangci-lint github.com/golangci/golangci-lint/cmd/golangci-lint
|
|
|
|
|
2019-08-02 19:44:32 +02:00
|
|
|
$(TOOLS_DIR)/misspell: go.mod go.sum tools.go
|
|
|
|
go build -o $(TOOLS_DIR)/misspell github.com/client9/misspell/cmd/misspell
|
|
|
|
|
2019-08-22 20:16:51 +02:00
|
|
|
$(TOOLS_DIR)/stringer: go.mod go.sum tools.go
|
|
|
|
go build -o $(TOOLS_DIR)/stringer golang.org/x/tools/cmd/stringer
|
|
|
|
|
|
|
|
precommit: $(TOOLS_DIR)/golangci-lint $(TOOLS_DIR)/misspell $(TOOLS_DIR)/stringer
|
|
|
|
PATH="$(abspath $(TOOLS_DIR)):$${PATH}" go generate ./...
|
2019-09-25 18:38:55 +02:00
|
|
|
# TODO: Fix this on windows.
|
2019-10-30 06:32:18 +02:00
|
|
|
set -e; for dir in $(ALL_GO_MOD_DIRS); do \
|
|
|
|
echo "compiling all packages in $${dir}"; \
|
2019-10-30 19:09:18 +02:00
|
|
|
(cd "$${dir}" && \
|
|
|
|
go build ./... && \
|
|
|
|
go test -run xxxxxMatchNothingxxxxx ./... >/dev/null); \
|
2019-10-30 06:32:18 +02:00
|
|
|
done
|
2019-09-25 18:38:55 +02:00
|
|
|
set -e; for dir in $(ALL_GO_MOD_DIRS); do \
|
|
|
|
echo "golangci-lint in $${dir}"; \
|
2019-10-30 19:09:18 +02:00
|
|
|
(cd "$${dir}" && \
|
|
|
|
$(abspath $(TOOLS_DIR))/golangci-lint run --fix); \
|
2019-09-25 18:38:55 +02:00
|
|
|
done
|
2019-08-05 22:58:24 +02:00
|
|
|
$(TOOLS_DIR)/misspell -w $(ALL_DOCS)
|
2019-09-25 18:38:55 +02:00
|
|
|
set -e; for dir in $(ALL_GO_MOD_DIRS); do \
|
2019-09-19 18:16:09 +02:00
|
|
|
echo "go mod tidy in $${dir}"; \
|
2019-10-30 19:09:18 +02:00
|
|
|
(cd "$${dir}" && \
|
|
|
|
go mod tidy); \
|
2019-09-19 18:16:09 +02:00
|
|
|
done
|
2019-07-03 01:21:24 +02:00
|
|
|
|
|
|
|
.PHONY: test-with-coverage
|
|
|
|
test-with-coverage:
|
2019-10-30 19:09:18 +02:00
|
|
|
set -e; for dir in $(ALL_GO_MOD_DIRS); do \
|
|
|
|
echo "go test ./... + coverage in $${dir}"; \
|
|
|
|
(cd "$${dir}" && \
|
|
|
|
$(GOTEST) $(GOTEST_OPT_WITH_COVERAGE) ./... && \
|
|
|
|
go tool cover -html=coverage.txt -o coverage.html); \
|
|
|
|
done
|
2019-07-03 01:21:24 +02:00
|
|
|
|
|
|
|
.PHONY: circle-ci
|
2019-09-19 18:16:09 +02:00
|
|
|
circle-ci: precommit test-clean-work-tree test-with-coverage test-386 examples
|
2019-08-22 20:16:51 +02:00
|
|
|
|
|
|
|
.PHONY: test-clean-work-tree
|
|
|
|
test-clean-work-tree:
|
|
|
|
@if ! git diff --quiet; then \
|
|
|
|
echo; \
|
2019-10-01 18:16:45 +02:00
|
|
|
echo 'Working tree is not clean, did you forget to run "make precommit"?'; \
|
2019-08-22 20:16:51 +02:00
|
|
|
echo; \
|
|
|
|
git status; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
2019-07-03 01:21:24 +02:00
|
|
|
|
|
|
|
.PHONY: test
|
2019-09-19 18:16:09 +02:00
|
|
|
test: examples
|
2019-10-30 19:09:18 +02:00
|
|
|
set -e; for dir in $(ALL_GO_MOD_DIRS); do \
|
|
|
|
echo "go test ./... + race in $${dir}"; \
|
|
|
|
(cd "$${dir}" && \
|
|
|
|
$(GOTEST) $(GOTEST_OPT) ./... && \
|
|
|
|
$(GOTEST) $(GOTEST_OPT_WITH_RACE) ./...); \
|
|
|
|
done
|
2019-07-03 01:21:24 +02:00
|
|
|
|
|
|
|
.PHONY: test-386
|
|
|
|
test-386:
|
2019-10-30 19:09:18 +02:00
|
|
|
set -e; for dir in $(ALL_GO_MOD_DIRS); do \
|
|
|
|
echo "go test ./... GOARCH 386 in $${dir}"; \
|
|
|
|
(cd "$${dir}" && \
|
|
|
|
GOARCH=386 $(GOTEST) -v -timeout 30s ./...); \
|
|
|
|
done
|
2019-07-03 01:21:24 +02:00
|
|
|
|
2019-09-19 18:16:09 +02:00
|
|
|
.PHONY: examples
|
|
|
|
examples:
|
2019-09-25 18:38:55 +02:00
|
|
|
@set -e; for ex in $(EXAMPLES); do \
|
2019-09-19 18:16:09 +02:00
|
|
|
echo "Building $${ex}"; \
|
2019-10-30 19:09:18 +02:00
|
|
|
(cd "$${ex}" && \
|
|
|
|
go build .); \
|
2019-09-19 18:16:09 +02:00
|
|
|
done
|