2021-03-22 17:38:52 +00:00
|
|
|
OS = $(shell uname | tr A-Z a-z)
|
|
|
|
|
2021-11-14 12:40:25 +00:00
|
|
|
export PATH := $(abspath bin/protoc/bin/):$(abspath bin/):${PATH}
|
|
|
|
|
2016-08-11 05:31:42 +00:00
|
|
|
PROJ=dex
|
2018-09-03 06:44:44 +00:00
|
|
|
ORG_PATH=github.com/dexidp
|
2016-08-09 21:38:09 +00:00
|
|
|
REPO_PATH=$(ORG_PATH)/$(PROJ)
|
2016-07-25 20:00:28 +00:00
|
|
|
|
2017-02-23 18:23:33 +00:00
|
|
|
VERSION ?= $(shell ./scripts/git-version)
|
2016-08-09 22:26:32 +00:00
|
|
|
|
2018-09-06 07:09:46 +00:00
|
|
|
DOCKER_REPO=quay.io/dexidp/dex
|
2016-08-09 22:26:32 +00:00
|
|
|
DOCKER_IMAGE=$(DOCKER_REPO):$(VERSION)
|
|
|
|
|
2016-10-04 05:15:23 +00:00
|
|
|
$( shell mkdir -p bin )
|
2016-10-06 01:23:15 +00:00
|
|
|
|
|
|
|
user=$(shell id -u -n)
|
|
|
|
group=$(shell id -g -n)
|
2016-10-04 05:15:23 +00:00
|
|
|
|
2016-07-25 20:00:28 +00:00
|
|
|
export GOBIN=$(PWD)/bin
|
2016-08-09 21:38:09 +00:00
|
|
|
|
2022-02-08 22:55:31 +00:00
|
|
|
LD_FLAGS="-w -X main.version=$(VERSION)"
|
2016-07-25 20:00:28 +00:00
|
|
|
|
2019-12-18 13:55:52 +00:00
|
|
|
# Dependency versions
|
2021-03-22 17:38:52 +00:00
|
|
|
|
2021-06-01 16:33:08 +00:00
|
|
|
KIND_NODE_IMAGE = "kindest/node:v1.19.11@sha256:07db187ae84b4b7de440a73886f008cf903fcf5764ba8106a9fd5243d6f32729"
|
|
|
|
KIND_TMP_DIR = "$(PWD)/bin/test/dex-kind-kubeconfig"
|
2020-12-30 22:07:32 +00:00
|
|
|
|
2021-06-02 06:33:54 +00:00
|
|
|
.PHONY: generate
|
|
|
|
generate:
|
|
|
|
@go generate $(REPO_PATH)/storage/ent/
|
|
|
|
|
|
|
|
build: generate bin/dex
|
2016-07-25 20:00:28 +00:00
|
|
|
|
2018-09-10 14:33:30 +00:00
|
|
|
bin/dex:
|
2020-09-09 11:50:19 +00:00
|
|
|
@mkdir -p bin/
|
2016-10-04 05:15:23 +00:00
|
|
|
@go install -v -ldflags $(LD_FLAGS) $(REPO_PATH)/cmd/dex
|
2016-07-25 20:00:28 +00:00
|
|
|
|
2020-09-09 11:50:19 +00:00
|
|
|
examples: bin/grpc-client bin/example-app
|
|
|
|
|
2018-09-10 14:33:30 +00:00
|
|
|
bin/grpc-client:
|
2020-09-09 11:50:19 +00:00
|
|
|
@mkdir -p bin/
|
|
|
|
@cd examples/ && go install -v -ldflags $(LD_FLAGS) $(REPO_PATH)/examples/grpc-client
|
|
|
|
|
|
|
|
bin/example-app:
|
|
|
|
@mkdir -p bin/
|
|
|
|
@cd examples/ && go install -v -ldflags $(LD_FLAGS) $(REPO_PATH)/examples/example-app
|
2017-02-20 16:45:32 +00:00
|
|
|
|
2021-05-12 16:13:32 +00:00
|
|
|
.PHONY: release-binary
|
2022-02-08 22:55:31 +00:00
|
|
|
release-binary: LD_FLAGS = "-w -X main.version=$(VERSION) -extldflags \"-static\""
|
2021-06-02 06:33:54 +00:00
|
|
|
release-binary: generate
|
2017-03-09 17:14:48 +00:00
|
|
|
@go build -o /go/bin/dex -v -ldflags $(LD_FLAGS) $(REPO_PATH)/cmd/dex
|
2022-01-18 17:24:05 +00:00
|
|
|
@go build -o /go/bin/docker-entrypoint -v -ldflags $(LD_FLAGS) $(REPO_PATH)/cmd/docker-entrypoint
|
2016-10-14 00:58:40 +00:00
|
|
|
|
2021-01-14 15:32:01 +00:00
|
|
|
docker-compose.override.yaml:
|
|
|
|
cp docker-compose.override.yaml.dist docker-compose.override.yaml
|
|
|
|
|
|
|
|
.PHONY: up
|
|
|
|
up: docker-compose.override.yaml ## Launch the development environment
|
|
|
|
@ if [ docker-compose.override.yaml -ot docker-compose.override.yaml.dist ]; then diff -u docker-compose.override.yaml docker-compose.override.yaml.dist || (echo "!!! The distributed docker-compose.override.yaml example changed. Please update your file accordingly (or at least touch it). !!!" && false); fi
|
|
|
|
docker-compose up -d
|
|
|
|
|
|
|
|
.PHONY: down
|
|
|
|
down: clear ## Destroy the development environment
|
|
|
|
docker-compose down --volumes --remove-orphans --rmi local
|
|
|
|
|
2021-04-19 12:45:12 +00:00
|
|
|
test:
|
2018-12-03 18:01:18 +00:00
|
|
|
@go test -v ./...
|
2016-07-25 20:00:28 +00:00
|
|
|
|
2021-04-19 12:45:12 +00:00
|
|
|
testrace:
|
2018-12-03 18:01:18 +00:00
|
|
|
@go test -v --race ./...
|
2016-07-25 20:00:28 +00:00
|
|
|
|
2021-05-12 16:13:32 +00:00
|
|
|
.PHONY: kind-up kind-down kind-tests
|
|
|
|
kind-up:
|
2021-06-01 16:33:08 +00:00
|
|
|
@mkdir -p bin/test
|
2021-05-12 16:13:32 +00:00
|
|
|
@kind create cluster --image ${KIND_NODE_IMAGE} --kubeconfig ${KIND_TMP_DIR}
|
|
|
|
|
|
|
|
kind-down:
|
|
|
|
@kind delete cluster
|
|
|
|
rm ${KIND_TMP_DIR}
|
|
|
|
|
|
|
|
kind-tests: export DEX_KUBERNETES_CONFIG_PATH=${KIND_TMP_DIR}
|
|
|
|
kind-tests: testall
|
|
|
|
|
2021-05-27 13:11:12 +00:00
|
|
|
.PHONY: lint lint-fix
|
2021-11-14 12:40:25 +00:00
|
|
|
lint: ## Run linter
|
|
|
|
golangci-lint run
|
2019-12-18 13:55:52 +00:00
|
|
|
|
|
|
|
.PHONY: fix
|
2021-11-14 12:40:25 +00:00
|
|
|
fix: ## Fix lint violations
|
|
|
|
golangci-lint run --fix
|
2019-12-18 13:55:52 +00:00
|
|
|
|
2016-10-06 01:23:15 +00:00
|
|
|
.PHONY: docker-image
|
2017-09-18 06:56:39 +00:00
|
|
|
docker-image:
|
2016-10-14 00:58:40 +00:00
|
|
|
@sudo docker build -t $(DOCKER_IMAGE) .
|
2016-08-09 22:26:32 +00:00
|
|
|
|
2017-12-01 00:40:42 +00:00
|
|
|
.PHONY: verify-proto
|
|
|
|
verify-proto: proto
|
|
|
|
@./scripts/git-diff
|
|
|
|
|
2017-09-18 06:56:39 +00:00
|
|
|
clean:
|
2016-10-06 01:23:15 +00:00
|
|
|
@rm -rf bin/
|
2016-10-14 00:58:40 +00:00
|
|
|
|
2019-12-18 14:07:53 +00:00
|
|
|
testall: testrace
|
2016-07-25 20:00:28 +00:00
|
|
|
|
|
|
|
FORCE:
|
|
|
|
|
2019-12-18 14:07:53 +00:00
|
|
|
.PHONY: test testrace testall
|
2021-03-22 17:38:52 +00:00
|
|
|
|
2021-03-24 02:45:00 +00:00
|
|
|
.PHONY: proto
|
2021-11-14 12:40:25 +00:00
|
|
|
proto:
|
|
|
|
@protoc --go_out=paths=source_relative:. --go-grpc_out=paths=source_relative:. api/v2/*.proto
|
|
|
|
@protoc --go_out=paths=source_relative:. --go-grpc_out=paths=source_relative:. api/*.proto
|
2021-03-24 02:45:00 +00:00
|
|
|
#@cp api/v2/*.proto api/
|
|
|
|
|
2021-03-22 17:38:52 +00:00
|
|
|
.PHONY: proto-internal
|
2021-11-14 12:40:25 +00:00
|
|
|
proto-internal:
|
|
|
|
@protoc --go_out=paths=source_relative:. server/internal/*.proto
|
|
|
|
|
|
|
|
# Dependency versions
|
|
|
|
GOLANGCI_VERSION = 1.42.0
|
|
|
|
GOTESTSUM_VERSION ?= 1.7.0
|
|
|
|
PROTOC_VERSION = 3.15.6
|
|
|
|
PROTOC_GEN_GO_VERSION = 1.26.0
|
|
|
|
PROTOC_GEN_GO_GRPC_VERSION = 1.1.0
|
2021-11-14 13:46:33 +00:00
|
|
|
KIND_VERSION = 0.11.1
|
2021-11-14 12:40:25 +00:00
|
|
|
|
2021-11-14 13:46:33 +00:00
|
|
|
deps: bin/gotestsum bin/golangci-lint bin/protoc bin/protoc-gen-go bin/protoc-gen-go-grpc bin/kind
|
2021-11-14 12:40:25 +00:00
|
|
|
|
|
|
|
bin/gotestsum:
|
|
|
|
@mkdir -p bin
|
|
|
|
curl -L https://github.com/gotestyourself/gotestsum/releases/download/v${GOTESTSUM_VERSION}/gotestsum_${GOTESTSUM_VERSION}_$(shell uname | tr A-Z a-z)_amd64.tar.gz | tar -zOxf - gotestsum > ./bin/gotestsum
|
|
|
|
@chmod +x ./bin/gotestsum
|
|
|
|
|
|
|
|
bin/golangci-lint:
|
|
|
|
@mkdir -p bin
|
2022-01-31 18:33:38 +00:00
|
|
|
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | BINARY=golangci-lint bash -s -- v${GOLANGCI_VERSION}
|
2021-11-14 12:40:25 +00:00
|
|
|
|
|
|
|
bin/protoc:
|
|
|
|
@mkdir -p bin/protoc
|
|
|
|
ifeq ($(shell uname | tr A-Z a-z), darwin)
|
2021-03-22 17:38:52 +00:00
|
|
|
curl -L https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-osx-x86_64.zip > bin/protoc.zip
|
|
|
|
endif
|
2021-11-14 12:40:25 +00:00
|
|
|
ifeq ($(shell uname | tr A-Z a-z), linux)
|
2021-03-22 17:38:52 +00:00
|
|
|
curl -L https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip > bin/protoc.zip
|
|
|
|
endif
|
2021-11-14 12:40:25 +00:00
|
|
|
unzip bin/protoc.zip -d bin/protoc
|
2021-03-22 17:38:52 +00:00
|
|
|
rm bin/protoc.zip
|
|
|
|
|
2021-11-14 12:40:25 +00:00
|
|
|
bin/protoc-gen-go:
|
2021-03-22 17:38:52 +00:00
|
|
|
@mkdir -p bin
|
2021-11-14 12:40:25 +00:00
|
|
|
curl -L https://github.com/protocolbuffers/protobuf-go/releases/download/v${PROTOC_GEN_GO_VERSION}/protoc-gen-go.v${PROTOC_GEN_GO_VERSION}.$(shell uname | tr A-Z a-z).amd64.tar.gz | tar -zOxf - protoc-gen-go > ./bin/protoc-gen-go
|
|
|
|
@chmod +x ./bin/protoc-gen-go
|
2021-03-24 02:45:00 +00:00
|
|
|
|
2021-11-14 12:40:25 +00:00
|
|
|
bin/protoc-gen-go-grpc:
|
2021-03-24 02:45:00 +00:00
|
|
|
@mkdir -p bin
|
2021-11-14 12:40:25 +00:00
|
|
|
curl -L https://github.com/grpc/grpc-go/releases/download/cmd/protoc-gen-go-grpc/v${PROTOC_GEN_GO_GRPC_VERSION}/protoc-gen-go-grpc.v${PROTOC_GEN_GO_GRPC_VERSION}.$(shell uname | tr A-Z a-z).amd64.tar.gz | tar -zOxf - ./protoc-gen-go-grpc > ./bin/protoc-gen-go-grpc
|
|
|
|
@chmod +x ./bin/protoc-gen-go-grpc
|
2021-11-14 13:46:33 +00:00
|
|
|
|
|
|
|
bin/kind:
|
|
|
|
@mkdir -p bin
|
|
|
|
curl -L https://github.com/kubernetes-sigs/kind/releases/download/v${KIND_VERSION}/kind-$(shell uname | tr A-Z a-z)-amd64 > ./bin/kind
|
|
|
|
@chmod +x ./bin/kind
|