-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
109 lines (90 loc) · 2.88 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
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
define make-go-dependency
# go install is responsible for not re-building when the code hasn't changed
.bin/$(notdir $1): .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))))
$(call make-lint-dependency)
.bin/ory: Makefile
bash <(curl https://raw.githubusercontent.com/ory/cli/master/install.sh) -b .bin v0.0.72
touch -a -m .bin/ory
node_modules: package.json package-lock.json Makefile
npm ci
.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
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
swagger generate spec -m -o ./spec/api.json -x internal/httpclient -x proto/ory/keto -x docker
ory dev swagger sanitize ./spec/api.json
swagger flatten --with-flatten=remove-unused -o ./spec/api.json ./spec/api.json
swagger validate ./spec/api.json
rm -rf internal/httpclient
mkdir -p internal/httpclient
swagger generate client -f ./spec/api.json -t internal/httpclient -A Ory_Keto
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: migrations-render
migrations-render: .bin/ory
ory dev pop migration render internal/persistence/sql/migrations/templates internal/persistence/sql/migrations/sql
.PHONY: migrations-render-replace
migrations-render-replace: .bin/ory
ory dev pop migration render -r internal/persistence/sql/migrations/templates internal/persistence/sql/migrations/sql