mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-01-22 05:19:26 +02:00
07df29db37
Co-authored-by: Henry Jenkins <henry@henryjenkins.name>
85 lines
2.8 KiB
Makefile
85 lines
2.8 KiB
Makefile
GO ?= go
|
|
GOLANGCILINT ?= golangci-lint
|
|
|
|
BINARY := oauth2-proxy
|
|
VERSION := $(shell git describe --always --dirty --tags 2>/dev/null || echo "undefined")
|
|
# Allow to override image registry.
|
|
REGISTRY ?= quay.io/oauth2-proxy
|
|
.NOTPARALLEL:
|
|
|
|
GO_MAJOR_VERSION = $(shell $(GO) version | cut -c 14- | cut -d' ' -f1 | cut -d'.' -f1)
|
|
GO_MINOR_VERSION = $(shell $(GO) version | cut -c 14- | cut -d' ' -f1 | cut -d'.' -f2)
|
|
MINIMUM_SUPPORTED_GO_MAJOR_VERSION = 1
|
|
MINIMUM_SUPPORTED_GO_MINOR_VERSION = 14
|
|
GO_VERSION_VALIDATION_ERR_MSG = Golang version is not supported, please update to at least $(MINIMUM_SUPPORTED_GO_MAJOR_VERSION).$(MINIMUM_SUPPORTED_GO_MINOR_VERSION)
|
|
|
|
.PHONY: all
|
|
all: lint $(BINARY)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf release
|
|
rm -f $(BINARY)
|
|
|
|
.PHONY: distclean
|
|
distclean: clean
|
|
rm -rf vendor
|
|
|
|
.PHONY: lint
|
|
lint: validate-go-version
|
|
GO111MODULE=on $(GOLANGCILINT) run
|
|
|
|
.PHONY: build
|
|
build: validate-go-version clean $(BINARY)
|
|
|
|
$(BINARY):
|
|
GO111MODULE=on CGO_ENABLED=0 $(GO) build -a -installsuffix cgo -ldflags="-X main.VERSION=${VERSION}" -o $@ github.com/oauth2-proxy/oauth2-proxy
|
|
|
|
.PHONY: docker
|
|
docker:
|
|
docker build -f Dockerfile -t $(REGISTRY)/oauth2-proxy:latest .
|
|
|
|
.PHONY: docker-all
|
|
docker-all: docker
|
|
docker build -f Dockerfile -t $(REGISTRY)/oauth2-proxy:latest-amd64 .
|
|
docker build -f Dockerfile -t $(REGISTRY)/oauth2-proxy:${VERSION} .
|
|
docker build -f Dockerfile -t $(REGISTRY)/oauth2-proxy:${VERSION}-amd64 .
|
|
docker build -f Dockerfile.arm64 -t $(REGISTRY)/oauth2-proxy:latest-arm64 .
|
|
docker build -f Dockerfile.arm64 -t $(REGISTRY)/oauth2-proxy:${VERSION}-arm64 .
|
|
docker build -f Dockerfile.armv6 -t $(REGISTRY)/oauth2-proxy:latest-armv6 .
|
|
docker build -f Dockerfile.armv6 -t $(REGISTRY)/oauth2-proxy:${VERSION}-armv6 .
|
|
|
|
.PHONY: docker-push
|
|
docker-push:
|
|
docker push $(REGISTRY)/oauth2-proxy:latest
|
|
|
|
.PHONY: docker-push-all
|
|
docker-push-all: docker-push
|
|
docker push $(REGISTRY)/oauth2-proxy:latest-amd64
|
|
docker push $(REGISTRY)/oauth2-proxy:${VERSION}
|
|
docker push $(REGISTRY)/oauth2-proxy:${VERSION}-amd64
|
|
docker push $(REGISTRY)/oauth2-proxy:latest-arm64
|
|
docker push $(REGISTRY)/oauth2-proxy:${VERSION}-arm64
|
|
docker push $(REGISTRY)/oauth2-proxy:latest-armv6
|
|
docker push $(REGISTRY)/oauth2-proxy:${VERSION}-armv6
|
|
|
|
.PHONY: test
|
|
test: lint
|
|
GO111MODULE=on $(GO) test -v -race ./...
|
|
|
|
.PHONY: release
|
|
release: lint test
|
|
BINARY=${BINARY} VERSION=${VERSION} ./dist.sh
|
|
|
|
.PHONY: validate-go-version
|
|
validate-go-version: ## Validates the installed version of go against Mattermost's minimum requirement.
|
|
@if [ $(GO_MAJOR_VERSION) -gt $(MINIMUM_SUPPORTED_GO_MAJOR_VERSION) ]; then \
|
|
exit 0 ;\
|
|
elif [ $(GO_MAJOR_VERSION) -lt $(MINIMUM_SUPPORTED_GO_MAJOR_VERSION) ]; then \
|
|
echo '$(GO_VERSION_VALIDATION_ERR_MSG)';\
|
|
exit 1; \
|
|
elif [ $(GO_MINOR_VERSION) -lt $(MINIMUM_SUPPORTED_GO_MINOR_VERSION) ] ; then \
|
|
echo '$(GO_VERSION_VALIDATION_ERR_MSG)';\
|
|
exit 1; \
|
|
fi
|