dex/Makefile

86 lines
2 KiB
Makefile
Raw Normal View History

2016-08-10 22:31:42 -07:00
PROJ=dex
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)
2016-07-25 13:00:28 -07:00
VERSION ?= $(shell ./scripts/git-version)
2016-08-09 15:26:32 -07:00
DOCKER_REPO=quay.io/dexidp/dex
2016-08-09 15:26:32 -07:00
DOCKER_IMAGE=$(DOCKER_REPO):$(VERSION)
$( shell mkdir -p bin )
2016-10-05 18:23:15 -07:00
user=$(shell id -u -n)
group=$(shell id -g -n)
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
build: bin/dex bin/example-app bin/grpc-client
2016-07-25 13:00:28 -07:00
bin/dex:
@go install -v -ldflags $(LD_FLAGS) $(REPO_PATH)/cmd/dex
2016-07-25 13:00:28 -07:00
bin/example-app:
@go install -v -ldflags $(LD_FLAGS) $(REPO_PATH)/cmd/example-app
bin/grpc-client:
@go install -v -ldflags $(LD_FLAGS) $(REPO_PATH)/examples/grpc-client
.PHONY: release-binary
release-binary:
@go build -o /go/bin/dex -v -ldflags $(LD_FLAGS) $(REPO_PATH)/cmd/dex
.PHONY: revendor
revendor:
@glide up -v
@glide-vc --use-lock-file --no-tests --only-code
2016-07-25 13:00:28 -07:00
test:
@go test -v -i $(shell go list ./... | grep -v '/vendor/')
@go test -v $(shell go list ./... | grep -v '/vendor/')
2016-07-25 13:00:28 -07:00
testrace:
@go test -v -i --race $(shell go list ./... | grep -v '/vendor/')
@go test -v --race $(shell go list ./... | grep -v '/vendor/')
2016-07-25 13:00:28 -07:00
vet:
@go vet $(shell go list ./... | grep -v '/vendor/')
fmt:
@./scripts/gofmt $(shell go list ./... | grep -v '/vendor/')
2016-07-25 13:00:28 -07:00
lint:
@for package in $(shell go list ./... | grep -v '/vendor/' | grep -v '/api' | grep -v '/server/internal'); do \
2016-10-13 18:15:20 -07:00
golint -set_exit_status $$package $$i || exit 1; \
2016-07-25 13:00:28 -07:00
done
2016-10-05 18:23:15 -07:00
.PHONY: docker-image
docker-image:
@sudo docker build -t $(DOCKER_IMAGE) .
2016-08-09 15:26:32 -07:00
.PHONY: proto
2017-11-30 16:40:42 -08:00
proto: bin/protoc bin/protoc-gen-go
@./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
2017-11-30 16:40:42 -08:00
.PHONY: verify-proto
verify-proto: proto
@./scripts/git-diff
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
clean:
2016-10-05 18:23:15 -07:00
@rm -rf bin/
2016-07-25 13:00:28 -07:00
testall: testrace vet fmt lint
FORCE:
.PHONY: test testrace vet fmt lint testall