2016-08-10 22:31:42 -07:00
|
|
|
PROJ=dex
|
2018-09-03 08:44:44 +02:00
|
|
|
ORG_PATH=github.com/dexidp
|
2016-08-09 14:38:09 -07:00
|
|
|
REPO_PATH=$(ORG_PATH)/$(PROJ)
|
2016-07-31 23:26:05 -07:00
|
|
|
export PATH := $(PWD)/bin:$(PATH)
|
2019-08-02 17:34:25 -04:00
|
|
|
THIS_DIRECTORY:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
2016-07-25 13:00:28 -07:00
|
|
|
|
2017-02-23 12:23:33 -06:00
|
|
|
VERSION ?= $(shell ./scripts/git-version)
|
2016-08-09 15:26:32 -07:00
|
|
|
|
2018-09-06 09:09:46 +02:00
|
|
|
DOCKER_REPO=quay.io/dexidp/dex
|
2016-08-09 15:26:32 -07:00
|
|
|
DOCKER_IMAGE=$(DOCKER_REPO):$(VERSION)
|
|
|
|
|
2016-10-03 22:15:23 -07:00
|
|
|
$( shell mkdir -p bin )
|
2016-10-05 18:23:15 -07:00
|
|
|
|
|
|
|
user=$(shell id -u -n)
|
|
|
|
group=$(shell id -g -n)
|
2016-10-03 22:15:23 -07:00
|
|
|
|
2016-07-25 13:00:28 -07:00
|
|
|
export GOBIN=$(PWD)/bin
|
2016-08-09 14:38:09 -07:00
|
|
|
|
2016-08-09 15:26:32 -07:00
|
|
|
LD_FLAGS="-w -X $(REPO_PATH)/version.Version=$(VERSION)"
|
2016-07-25 13:00:28 -07:00
|
|
|
|
2019-12-18 14:55:52 +01:00
|
|
|
# Dependency versions
|
|
|
|
GOLANGCI_VERSION = 1.21.0
|
|
|
|
|
2017-02-20 08:45:32 -08:00
|
|
|
build: bin/dex bin/example-app bin/grpc-client
|
2016-07-25 13:00:28 -07:00
|
|
|
|
2018-09-10 16:33:30 +02:00
|
|
|
bin/dex:
|
2016-10-03 22:15:23 -07:00
|
|
|
@go install -v -ldflags $(LD_FLAGS) $(REPO_PATH)/cmd/dex
|
2016-07-25 13:00:28 -07:00
|
|
|
|
2018-09-10 16:33:30 +02:00
|
|
|
bin/example-app:
|
2016-10-03 22:15:23 -07:00
|
|
|
@go install -v -ldflags $(LD_FLAGS) $(REPO_PATH)/cmd/example-app
|
|
|
|
|
2018-09-10 16:33:30 +02:00
|
|
|
bin/grpc-client:
|
2017-02-20 08:45:32 -08:00
|
|
|
@go install -v -ldflags $(LD_FLAGS) $(REPO_PATH)/examples/grpc-client
|
|
|
|
|
2016-10-13 17:58:40 -07:00
|
|
|
.PHONY: release-binary
|
|
|
|
release-binary:
|
2017-03-09 09:14:48 -08:00
|
|
|
@go build -o /go/bin/dex -v -ldflags $(LD_FLAGS) $(REPO_PATH)/cmd/dex
|
2016-10-13 17:58:40 -07:00
|
|
|
|
2016-12-22 11:35:39 -08:00
|
|
|
.PHONY: revendor
|
2018-09-03 08:49:49 +02:00
|
|
|
revendor:
|
2018-11-28 16:59:09 +00:00
|
|
|
@go mod tidy -v
|
|
|
|
@go mod vendor -v
|
|
|
|
@go mod verify
|
2016-12-22 11:35:39 -08:00
|
|
|
|
2016-07-25 13:00:28 -07:00
|
|
|
test:
|
2018-12-03 10:01:18 -08:00
|
|
|
@go test -v ./...
|
2016-07-25 13:00:28 -07:00
|
|
|
|
|
|
|
testrace:
|
2018-12-03 10:01:18 -08:00
|
|
|
@go test -v --race ./...
|
2016-07-25 13:00:28 -07:00
|
|
|
|
2019-12-18 14:55:52 +01:00
|
|
|
bin/golangci-lint: bin/golangci-lint-${GOLANGCI_VERSION}
|
|
|
|
@ln -sf golangci-lint-${GOLANGCI_VERSION} bin/golangci-lint
|
|
|
|
bin/golangci-lint-${GOLANGCI_VERSION}:
|
|
|
|
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | BINARY=golangci-lint bash -s -- v${GOLANGCI_VERSION}
|
|
|
|
@mv bin/golangci-lint $@
|
|
|
|
|
|
|
|
.PHONY: lint
|
|
|
|
lint: bin/golangci-lint ## Run linter
|
|
|
|
bin/golangci-lint run
|
|
|
|
|
|
|
|
.PHONY: fix
|
|
|
|
fix: bin/golangci-lint ## Fix lint violations
|
|
|
|
bin/golangci-lint run --fix
|
|
|
|
|
2016-07-25 13:00:28 -07:00
|
|
|
vet:
|
2018-12-03 10:01:18 -08:00
|
|
|
@go vet ./...
|
2016-07-25 13:00:28 -07:00
|
|
|
|
|
|
|
fmt:
|
2018-12-03 10:01:18 -08:00
|
|
|
@./scripts/gofmt ./...
|
2016-07-25 13:00:28 -07:00
|
|
|
|
2019-12-18 14:55:52 +01:00
|
|
|
oldlint: bin/golint
|
2018-12-03 10:01:18 -08:00
|
|
|
@./bin/golint -set_exit_status $(shell go list ./...)
|
2016-07-25 13:00:28 -07:00
|
|
|
|
2016-10-05 18:23:15 -07:00
|
|
|
.PHONY: docker-image
|
2017-09-18 08:56:39 +02:00
|
|
|
docker-image:
|
2016-10-13 17:58:40 -07:00
|
|
|
@sudo docker build -t $(DOCKER_IMAGE) .
|
2016-08-09 15:26:32 -07:00
|
|
|
|
2016-12-22 16:41:30 -08:00
|
|
|
.PHONY: proto
|
2017-11-30 16:40:42 -08:00
|
|
|
proto: bin/protoc bin/protoc-gen-go
|
2017-04-13 11:32:19 -07:00
|
|
|
@./bin/protoc --go_out=plugins=grpc:. --plugin=protoc-gen-go=./bin/protoc-gen-go api/*.proto
|
|
|
|
@./bin/protoc --go_out=. --plugin=protoc-gen-go=./bin/protoc-gen-go server/internal/*.proto
|
2016-12-22 16:41:30 -08:00
|
|
|
|
2017-11-30 16:40:42 -08:00
|
|
|
.PHONY: verify-proto
|
|
|
|
verify-proto: proto
|
|
|
|
@./scripts/git-diff
|
|
|
|
|
2016-10-03 22:15:23 -07:00
|
|
|
bin/protoc: scripts/get-protoc
|
|
|
|
@./scripts/get-protoc bin/protoc
|
|
|
|
|
|
|
|
bin/protoc-gen-go:
|
|
|
|
@go install -v $(REPO_PATH)/vendor/github.com/golang/protobuf/protoc-gen-go
|
|
|
|
|
2018-10-24 14:16:49 -07:00
|
|
|
bin/golint:
|
2019-08-02 17:34:25 -04:00
|
|
|
@go install -v $(THIS_DIRECTORY)/vendor/golang.org/x/lint/golint
|
2018-10-24 14:16:49 -07:00
|
|
|
|
2017-09-18 08:56:39 +02:00
|
|
|
clean:
|
2016-10-05 18:23:15 -07:00
|
|
|
@rm -rf bin/
|
2016-10-13 17:58:40 -07:00
|
|
|
|
2019-12-18 14:55:52 +01:00
|
|
|
testall: testrace vet fmt oldlint
|
2016-07-25 13:00:28 -07:00
|
|
|
|
|
|
|
FORCE:
|
|
|
|
|
2019-12-18 14:55:52 +01:00
|
|
|
.PHONY: test testrace vet fmt oldlint testall
|