2020-05-09 17:07:46 +02:00
GO ?= go
GOLANGCILINT ?= golangci-lint
2020-03-29 15:54:36 +02:00
BINARY := oauth2-proxy
2020-07-07 10:53:32 +02:00
VERSION ?= $( shell git describe --always --dirty --tags 2>/dev/null || echo "undefined" )
2019-10-07 22:53:46 +02:00
# Allow to override image registry.
2020-03-29 15:54:36 +02:00
REGISTRY ?= quay.io/oauth2-proxy
2019-01-07 18:41:11 +02:00
.NOTPARALLEL :
2019-01-04 12:58:30 +02:00
2020-05-09 17:07:46 +02:00
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
2020-10-07 19:46:41 +02:00
MINIMUM_SUPPORTED_GO_MINOR_VERSION = 15
2020-05-09 17:07:46 +02:00
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)
2020-07-07 10:53:32 +02:00
DOCKER_BUILD := docker build --build-arg VERSION = ${ VERSION }
2020-05-10 08:29:37 +02:00
i f e q ( $( COVER ) , t r u e )
TESTCOVER ?= -coverprofile c.out
e n d i f
2019-01-04 12:58:30 +02:00
.PHONY : all
2019-07-13 22:24:40 +02:00
all : lint $( BINARY )
2019-01-04 12:58:30 +02:00
.PHONY : clean
clean :
rm -rf release
rm -f $( BINARY)
.PHONY : distclean
distclean : clean
rm -rf vendor
.PHONY : lint
2020-05-09 17:07:46 +02:00
lint : validate -go -version
2019-07-13 22:24:40 +02:00
GO111MODULE = on $( GOLANGCILINT) run
2019-01-04 12:58:30 +02:00
.PHONY : build
2020-05-09 17:07:46 +02:00
build : validate -go -version clean $( BINARY )
2019-01-04 12:58:30 +02:00
$(BINARY) :
2020-10-03 15:09:40 +02:00
GO111MODULE = on CGO_ENABLED = 0 $( GO) build -a -installsuffix cgo -ldflags= " -X main.VERSION= ${ VERSION } " -o $@ github.com/oauth2-proxy/oauth2-proxy/v7
2019-01-04 12:58:30 +02:00
2019-02-02 01:08:19 +02:00
.PHONY : docker
docker :
2020-07-07 10:53:32 +02:00
$( DOCKER_BUILD) -f Dockerfile -t $( REGISTRY) /oauth2-proxy:latest .
2019-02-02 01:08:19 +02:00
.PHONY : docker -all
2019-02-02 03:20:20 +02:00
docker-all : docker
2020-07-07 10:53:32 +02:00
$( 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 .
2019-02-08 12:05:57 +02:00
.PHONY : docker -push
docker-push :
2020-03-29 15:54:36 +02:00
docker push $( REGISTRY) /oauth2-proxy:latest
2019-02-08 12:05:57 +02:00
.PHONY : docker -push -all
docker-push-all : docker -push
2020-03-29 15:54:36 +02:00
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
2019-02-02 01:08:19 +02:00
2019-01-04 12:58:30 +02:00
.PHONY : test
2019-07-13 22:24:40 +02:00
test : lint
2020-05-10 08:29:37 +02:00
GO111MODULE = on $( GO) test $( TESTCOVER) -v -race ./...
2019-01-04 12:58:30 +02:00
.PHONY : release
2019-01-07 18:41:11 +02:00
release : lint test
2019-10-29 19:27:08 +02:00
BINARY = ${ BINARY } VERSION = ${ VERSION } ./dist.sh
2020-05-09 17:07:46 +02:00
.PHONY : validate -go -version
2020-05-03 22:05:40 +02:00
validate-go-version :
2020-05-09 17:07:46 +02:00
@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
2020-05-03 22:05:40 +02:00
# local-env can be used to interact with the local development environment
2020-05-07 23:59:43 +02:00
# eg:
# make local-env-up # Bring up a basic test environment
# make local-env-down # Tear down the basic test environment
# make local-env-nginx-up # Bring up an nginx based test environment
# make local-env-nginx-down # Tead down the nginx based test environment
2020-05-03 22:05:40 +02:00
.PHONY : local -env -%
local-env-% :
make -C contrib/local-environment $*