forked from ory/kratos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
143 lines (113 loc) · 4.44 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
136
137
138
139
140
141
142
143
SHELL=/bin/bash -o pipefail
# EXECUTABLES = docker-compose docker node npm go
# K := $(foreach exec,$(EXECUTABLES),\
# $(if $(shell which $(exec)),some string,$(error "No $(exec) in PATH")))
export GO111MODULE := on
export PATH := .bin:${PATH}
export PWD := $(shell pwd)
GO_DEPENDENCIES = github.com/ory/go-acc \
github.com/ory/x/tools/listx \
github.com/markbates/pkger/cmd/pkger \
github.com/golang/mock/mockgen \
github.com/go-swagger/go-swagger/cmd/swagger \
golang.org/x/tools/cmd/goimports \
github.com/mikefarah/yq
define make-go-dependency
# go install is responsible for not re-building when the code hasn't changed
.bin/$(notdir $1): go.mod go.sum Makefile
GOBIN=$(PWD)/.bin/ go install $1
endef
$(foreach dep, $(GO_DEPENDENCIES), $(eval $(call make-go-dependency, $(dep))))
$(call make-lint-dependency)
.bin/clidoc:
go build -o .bin/clidoc ./cmd/clidoc/.
docs/cli: .bin/clidoc
clidoc .
.bin/traefik:
https://github.com/containous/traefik/releases/download/v2.3.0-rc4/traefik_v2.3.0-rc4_linux_amd64.tar.gz \
tar -zxvf traefik_${traefik_version}_linux_${arch}.tar.gz
.bin/cli: go.mod go.sum Makefile
go build -o .bin/cli -tags sqlite github.com/ory/cli
node_modules: package.json Makefile
npm ci
docs/node_modules: docs/package.json
cd docs; npm ci
.bin/golangci-lint: Makefile
bash <(curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh) -d -b .bin v1.28.3
.bin/hydra: Makefile
bash <(curl https://raw.githubusercontent.com/ory/hydra/master/install.sh) -d -b .bin v1.9.0-alpha.1
.PHONY: docs
docs: docs/node_modules
cd docs; npm run build
.PHONY: lint
lint: .bin/golangci-lint
golangci-lint run -v ./...
.PHONY: cover
cover:
go test ./... -coverprofile=cover.out
go tool cover -func=cover.out
.PHONY: mocks
mocks: .bin/mockgen
mockgen -mock_names Manager=MockLoginExecutorDependencies -package internal -destination internal/hook_login_executor_dependencies.go github.com/ory/kratos/selfservice loginExecutorDependencies
.PHONY: install
install: pack
GO111MODULE=on go install -tags sqlite .
.PHONY: test-resetdb
test-resetdb:
script/testenv.sh
.PHONY: test
test:
go test -p 1 -tags sqlite -count=1 -failfast ./...
# Generates the SDK
.PHONY: sdk
sdk: .bin/swagger .bin/cli
swagger generate spec -m -o .schema/api.swagger.json -x internal/httpclient
cli dev swagger sanitize ./.schema/api.swagger.json
swagger validate ./.schema/api.swagger.json
swagger flatten --with-flatten=remove-unused -o ./.schema/api.swagger.json ./.schema/api.swagger.json
swagger validate ./.schema/api.swagger.json
rm -rf internal/httpclient/models/* internal/httpclient/clients/*
mkdir -p internal/httpclient/
swagger generate client -f ./.schema/api.swagger.json -t internal/httpclient/ -A Ory_Kratos
make format
.PHONY: quickstart
quickstart:
docker pull oryd/kratos:latest-sqlite
docker pull oryd/kratos-selfservice-ui-node:latest
docker-compose -f quickstart.yml -f quickstart-standalone.yml up --build --force-recreate
.PHONY: quickstart-dev
quickstart-dev:
docker build -f .docker/Dockerfile-build -t oryd/kratos:latest-sqlite .
docker-compose -f quickstart.yml -f quickstart-standalone.yml -f quickstart-latest.yml up --build --force-recreate
# Formats the code
.PHONY: format
format: .bin/goimports
goimports -w -local github.com/ory .
cd docs; npm run format
npm run format
# Runs tests in short mode, without database adapters
.PHONY: docker
docker:
docker build -f .docker/Dockerfile-build -t oryd/kratos:latest-sqlite .
.PHONY: test-e2e
test-e2e: node_modules test-resetdb
source script/test-envs.sh
test/e2e/run.sh sqlite
test/e2e/run.sh postgres
test/e2e/run.sh cockroach
test/e2e/run.sh mysql
.PHONY: migrations-sync
migrations-sync: .bin/cli
cli dev pop migration sync persistence/sql/migrations/templates persistence/sql/migratest/testdata
.PHONY: migrations-render
migrations-render: .bin/cli
cli dev pop migration render persistence/sql/migrations/templates persistence/sql/migrations/sql
.PHONY: migrations-render-replace
migrations-render-replace: .bin/cli
cli dev pop migration render -r persistence/sql/migrations/templates persistence/sql/migrations/sql
.PHONY: migratest-refresh
migratest-refresh:
cd persistence/sql/migratest; go test -tags sqlite,refresh -short .
.PHONY: pack
pack: .bin/pkger
pkger -exclude node_modules -exclude docs -exclude .git -exclude .github -exclude .bin -exclude test -exclude script -exclude contrib