-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
135 lines (112 loc) · 3.75 KB
/
Makefile
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
SHELL=/bin/bash -o pipefail
export PATH := .bin:${PATH}
export PWD := $(shell pwd)
GO_DEPENDENCIES = github.com/go-swagger/go-swagger/cmd/swagger \
golang.org/x/tools/cmd/goimports \
github.com/mattn/goveralls \
github.com/ory/go-acc \
github.com/bufbuild/buf/cmd/buf \
google.golang.org/protobuf/cmd/protoc-gen-go \
google.golang.org/grpc/cmd/protoc-gen-go-grpc \
github.com/goreleaser/godownloader \
github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc \
github.com/ory/cli \
github.com/anchore/grype
define make-go-dependency
# go install is responsible for not re-building when the code hasn't changed
.bin/$2: .bin/go.mod .bin/go.sum Makefile
cd .bin; GOBIN=$(PWD)/.bin/ go install $1
endef
$(foreach dep, $(GO_DEPENDENCIES), $(eval $(call make-go-dependency,$(dep),$(notdir $(dep)))))
# versioned package paths
$(eval $(call make-go-dependency,github.com/mikefarah/yq/v4,yq))
.bin/ory: Makefile
bash <(curl https://raw.githubusercontent.com/ory/meta/master/install.sh) -d -b .bin ory v0.1.0
touch -a -m .bin/ory
node_modules: package.json package-lock.json Makefile
npm ci
.PHONY: .bin/clidoc
.bin/clidoc:
go build -o .bin/clidoc ./cmd/clidoc/.
docs/cli: .bin/clidoc
clidoc .
.PHONY: format
format: .bin/goimports node_modules
goimports -w -local github.com/ory/keto *.go internal cmd contrib ketoctx embedx
npm run format
.PHONY: install
install:
go install -tags sqlite .
.PHONY: docker
docker:
docker build -t oryd/keto:latest -f .docker/Dockerfile-build .
# Generates the SDKs
.PHONY: sdk
sdk: .bin/swagger .bin/ory node_modules
rm -rf internal/httpclient internal/httpclient-next
swagger generate spec -m -o spec/swagger.json \
-c github.com/ory/keto \
-c github.com/ory/x/healthx \
-x internal/httpclient \
-x internal/e2e
ory dev swagger sanitize ./spec/swagger.json
swagger validate ./spec/swagger.json
CIRCLE_PROJECT_USERNAME=ory CIRCLE_PROJECT_REPONAME=keto \
ory dev openapi migrate \
--health-path-tags metadata \
-p https://raw.githubusercontent.com/ory/x/master/healthx/openapi/patch.yaml \
-p file://.schema/openapi/patches/meta.yaml \
spec/swagger.json spec/api.json
mkdir -p internal/httpclient internal/httpclient-next
swagger generate client -f ./spec/swagger.json -t internal/httpclient -A Ory_Keto
npm run openapi-generator-cli -- generate -i "spec/api.json" \
-g go \
-o "internal/httpclient-next" \
--git-user-id ory \
--git-repo-id keto-client-go \
--git-host github.com \
-t .schema/openapi/templates/go \
-c .schema/openapi/gen.go.yml
make format
.PHONY: build
build:
go build -tags sqlite
#
# Generate APIs and client stubs from the definitions
#
.PHONY: buf-gen
buf-gen: .bin/buf .bin/protoc-gen-go .bin/protoc-gen-go-grpc .bin/protoc-gen-doc node_modules
buf generate \
&& \
echo "All code was generated successfully!"
#
# Lint API definitions
#
.PHONY: buf-lint
buf-lint: .bin/buf
buf check lint \
&& \
echo "All lint checks passed successfully!"
#
# Generate after linting succeeded
#
.PHONY: buf
buf: buf-lint buf-gen
.PHONY: test-e2e
test-e2e:
go test -tags sqlite -failfast -v ./internal/e2e
.PHONY: test-docs-samples
test-docs-samples:
cd ./contrib/docs-code-samples \
&& \
npm i \
&& \
npm test
.PHONY: cve-scan
cve-scan: docker .bin/grype
grype oryd/keto:latest
.PHONY: post-release
post-release: .bin/yq
cat docker-compose.yml | yq '.services.keto.image = "oryd/keto:'$$DOCKER_TAG'"' | sponge docker-compose.yml
cat docker-compose-mysql.yml | yq '.services.keto-migrate.image = "oryd/keto:'$$DOCKER_TAG'"' | sponge docker-compose-mysql.yml
cat docker-compose-postgres.yml | yq '.services.keto-migrate.image = "oryd/keto:'$$DOCKER_TAG'"' | sponge docker-compose-postgres.yml