-
-
Notifications
You must be signed in to change notification settings - Fork 584
Expand file tree
/
Copy pathMakefile
More file actions
180 lines (161 loc) · 5.39 KB
/
Copy pathMakefile
File metadata and controls
180 lines (161 loc) · 5.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#! /usr/bin/make
#
# Makefile for Goa v3
#
# Targets:
# - "depend" retrieves the Go packages needed to run the linter and tests
# - "lint" runs the linter
# - "test" runs the tests
# - "release" creates a new release commit, tags the commit and pushes the tag to GitHub.
# "release" also updates the examples and plugins repo and pushes the updates to GitHub.
#
# Meta targets:
# - "all" is the default target, it runs "lint" and "test"
#
MAJOR=3
MINOR=30
BUILD=0
GOOS=$(shell go env GOOS)
GOARCH=$(shell go env GOARCH)
GO_FILES=$(shell find . -type f -name '*.go')
GOPATH=$(shell go env GOPATH)
GOBIN_DIR=$(GOPATH)/bin
GOLANGCI_LINT_VERSION?=v2.11.3
GOLANGCI_LINT=$(GOBIN_DIR)/golangci-lint
PROTOC_BIN=protoc
PROTOC_DEST=$(GOBIN_DIR)/$(PROTOC_BIN)
.PHONY: all all-tests ci depend lint test test-release integration-test build-goa release release-preflight release-goa release-examples release-plugins
.NOTPARALLEL: release release-goa release-examples release-plugins
# Only list test and build dependencies
# Standard dependencies are installed via go get
DEPEND=\
google.golang.org/protobuf/cmd/protoc-gen-go@latest \
google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
all: lint test integration-test
all-tests: lint test integration-test
ci: depend all
# Install protoc
PROTOC_VERSION=25.0
UNZIP=unzip
ifeq ($(GOOS),linux)
PROTOC=protoc-$(PROTOC_VERSION)-linux-x86_64
PROTOC_EXEC=$(PROTOC)/bin/protoc
endif
ifeq ($(GOOS),darwin)
ifeq ($(GOARCH),arm64)
PROTOC=protoc-$(PROTOC_VERSION)-osx-aarch_64
PROTOC_EXEC=$(PROTOC)/bin/protoc
else
PROTOC=protoc-$(PROTOC_VERSION)-osx-x86_64
PROTOC_EXEC=$(PROTOC)/bin/protoc
endif
endif
ifeq ($(GOOS),windows)
PROTOC=protoc-$(PROTOC_VERSION)-win32
PROTOC_EXEC="$(PROTOC)\bin\protoc.exe"
PROTOC_BIN=protoc.exe
GOPATH:=$(subst \,/,$(GOPATH))
endif
depend:
@echo INSTALLING DEPENDENCIES...
@mkdir -p "$(GOBIN_DIR)"
@go mod download
@for package in $(DEPEND); do GOBIN="$(GOBIN_DIR)" go install $$package; done
@curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOBIN_DIR) $(GOLANGCI_LINT_VERSION)
@$(GOLANGCI_LINT) version
@go mod tidy -compat=1.17
@echo INSTALLING PROTOC...
@rm -rf "$(PROTOC)"
@mkdir -p "$(PROTOC)"
@cd $(PROTOC); \
curl -O -L https://github.com/protocolbuffers/protobuf/releases/download/v$(PROTOC_VERSION)/$(PROTOC).zip; \
$(UNZIP) $(PROTOC).zip
@rm -f "$(PROTOC_DEST)" && \
cp $(PROTOC_EXEC) "$(PROTOC_DEST)" && \
chmod 0755 "$(PROTOC_DEST)" && \
rm -rf $(PROTOC) && \
"$(PROTOC_DEST)" --version
lint:
ifneq ($(GOOS),windows)
@$(GOLANGCI_LINT) run ./... || (echo "^ - lint errors!" && echo && exit 1)
endif
test:
ifneq ($(GOOS),windows)
PATH="$(GOBIN_DIR):$$PATH" go test ./... --coverprofile=cover.out
else
go test ./... --coverprofile=cover.out
endif
test-release:
ifneq ($(GOOS),windows)
PATH="$(GOBIN_DIR):$$PATH" go test -count=1 ./...
else
go test -count=1 ./...
endif
integration-test: build-goa
ifneq ($(GOOS),windows)
cd jsonrpc/integration_tests && PATH="$(GOBIN_DIR):$$PATH" go test -count=1 -timeout 10m ./...
endif
# Needed for CI to run integration tests
build-goa:
cd cmd/goa && GOBIN="$(GOBIN_DIR)" go install .
release-preflight: lint test-release integration-test
release: release-goa release-examples release-plugins
@echo "Release v$(MAJOR).$(MINOR).$(BUILD) complete"
release-goa:
# First make sure all is clean
@status="$$(git status --porcelain)"; \
if [ -n "$$status" ]; then \
echo "error: goa repo has uncommitted changes:"; \
echo "$$status"; \
exit 1; \
fi
cd $(GOPATH)/src/goa.design/examples && \
git checkout main && \
git pull origin main && \
status="$$(git status --porcelain)" && \
if [ -n "$$status" ]; then \
echo "error: examples repo has uncommitted changes:"; \
echo "$$status"; \
exit 1; \
fi
cd $(GOPATH)/src/goa.design/plugins && \
git checkout v$(MAJOR) && \
git pull origin v$(MAJOR) && \
status="$$(git status --porcelain)" && \
if [ -n "$$status" ]; then \
echo "error: plugins repo has uncommitted changes:"; \
echo "$$status"; \
exit 1; \
fi
go mod tidy
# Bump version number, commit and push
sed 's/Major = .*/Major = $(MAJOR)/' pkg/version.go > _tmp && mv _tmp pkg/version.go
sed 's/Minor = .*/Minor = $(MINOR)/' pkg/version.go > _tmp && mv _tmp pkg/version.go
sed 's/Build = .*/Build = $(BUILD)/' pkg/version.go > _tmp && mv _tmp pkg/version.go
sed 's/goa\/v3@v.*tab=doc/goa\/v3@v$(MAJOR).$(MINOR).$(BUILD)\/dsl?tab=doc/' README.md > _tmp && mv _tmp README.md
$(MAKE) release-preflight
git add .
git commit -m "Release v$(MAJOR).$(MINOR).$(BUILD)"
git tag v$(MAJOR).$(MINOR).$(BUILD)
cd cmd/goa && go install .
git push origin v$(MAJOR)
git push origin v$(MAJOR).$(MINOR).$(BUILD)
# Wait for Go proxy to update
sleep 10
release-examples:
cd $(GOPATH)/src/goa.design/examples && \
make GOA_VERSION=v$(MAJOR).$(MINOR).$(BUILD)&& \
git add . && \
git commit -m "Release v$(MAJOR).$(MINOR).$(BUILD)" && \
git tag v$(MAJOR).$(MINOR).$(BUILD) && \
git push origin main && \
git push origin v$(MAJOR).$(MINOR).$(BUILD)
release-plugins:
cd $(GOPATH)/src/goa.design/plugins && \
sed 's/goa.design\/goa\/v.*/goa.design\/goa\/v$(MAJOR) v$(MAJOR).$(MINOR).$(BUILD)/' go.mod > _tmp && mv _tmp go.mod && \
make && \
git add . && \
git commit -m "Release v$(MAJOR).$(MINOR).$(BUILD)" && \
git tag v$(MAJOR).$(MINOR).$(BUILD) && \
git push origin v$(MAJOR) && \
git push origin v$(MAJOR).$(MINOR).$(BUILD)