2018-04-19 12:07:10 +03:00
# Copyright 2018 The Prometheus Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# A common Makefile that includes rules to be reused in different prometheus projects.
# !!! Open PRs only against the prometheus/prometheus/Makefile.common repository!
# Example usage :
2018-10-23 12:55:53 +02:00
# Create the main Makefile in the root project directory.
2018-04-19 12:07:10 +03:00
# include Makefile.common
# customTarget:
2018-04-20 18:35:42 +02:00
# @echo ">> Running customTarget"
2018-04-19 12:07:10 +03:00
#
# Ensure GOBIN is not set during build so that promu is installed to the correct path
u n export GOBIN
GO ?= go
GOFMT ?= $( GO) fmt
FIRST_GOPATH := $( firstword $( subst :, ,$( shell $( GO) env GOPATH) ) )
2018-10-23 12:55:53 +02:00
GOOPTS ?=
i f n e q ( , $( wildcard go .mod ) )
ifeq ( $( shell $( GO) version | grep -E 'go1\.(10|[0-9])\.' ) ,)
# Always use the local vendor/ directory to satisfy the dependencies.
GOOPTS := $( GOOPTS) -mod= vendor
2018-10-25 16:40:05 +02:00
# Enable module support forcibly just in case the directory is inside GOPATH (and Travis CI).
2018-10-23 12:55:53 +02:00
GO111MODULE := on
unexport GOVENDOR
else
$( warning This repository requires Go >= 1.11 because of Go modules )
$( warning Some recipes may not work as expected as the current Go runtime is '$ ( shell $ ( GO ) version ) ')
endif
e l s e
2018-10-25 16:40:05 +02:00
# This repository isn't using Go modules (yet).
2018-10-23 12:55:53 +02:00
GOVENDOR := $( FIRST_GOPATH) /bin/govendor
2018-10-26 09:49:20 +02:00
unexport GO111MODULE
2018-10-23 12:55:53 +02:00
e n d i f
2018-04-19 12:07:10 +03:00
PROMU := $( FIRST_GOPATH) /bin/promu
2018-10-26 13:49:06 +02:00
STATICCHECK := $( FIRST_GOPATH) /bin/staticcheck
2018-04-19 13:38:01 +03:00
pkgs = ./...
2018-04-19 12:07:10 +03:00
PREFIX ?= $( shell pwd )
BIN_DIR ?= $( shell pwd )
DOCKER_IMAGE_TAG ?= $( subst /,-,$( shell git rev-parse --abbrev-ref HEAD) )
2018-07-04 11:27:10 +02:00
DOCKER_REPO ?= prom
2018-04-19 12:07:10 +03:00
2018-06-11 17:51:28 +02:00
.PHONY : all
2018-04-19 15:17:12 +03:00
all : style staticcheck unused build test
2018-04-19 12:07:10 +03:00
2018-07-12 16:53:34 -05:00
# This rule is used to forward a target like "build" to "common-build". This
# allows a new "build" target to be defined in a Makefile which includes this
# one and override "common-build" without override warnings.
% : common -% ;
.PHONY : common -style
common-style :
2018-04-19 12:07:10 +03:00
@echo ">> checking code style"
2018-08-07 12:19:19 +02:00
@fmtRes= $$ ( $( GOFMT) -d $$ ( find . -path ./vendor -prune -o -name '*.go' -print) ) ; \
if [ -n " $$ {fmtRes} " ] ; then \
echo "gofmt checking failed!" ; echo " $$ {fmtRes} " ; echo; \
echo " Please ensure you are using $$ ( $( GO) version) for formatting code. " ; \
exit 1; \
fi
2018-04-19 12:07:10 +03:00
2018-07-12 16:53:34 -05:00
.PHONY : common -check_license
common-check_license :
2018-04-19 12:07:10 +03:00
@echo ">> checking license header"
@licRes= $$ ( for file in $$ ( find . -type f -iname '*.go' ! -path './vendor/*' ) ; do \
awk 'NR<=3' $$ file | grep -Eq "(Copyright|generated|GENERATED)" || echo $$ file; \
done ) ; \
if [ -n " $$ {licRes} " ] ; then \
echo "license header checking failed:" ; echo " $$ {licRes} " ; \
exit 1; \
fi
2018-07-12 16:53:34 -05:00
.PHONY : common -test -short
common-test-short :
2018-04-19 12:07:10 +03:00
@echo ">> running short tests"
2018-10-23 12:55:53 +02:00
GO111MODULE = $( GO111MODULE) $( GO) test -short $( GOOPTS) $( pkgs)
2018-04-19 12:07:10 +03:00
2018-07-12 16:53:34 -05:00
.PHONY : common -test
common-test :
2018-04-19 12:07:10 +03:00
@echo ">> running all tests"
2018-10-23 12:55:53 +02:00
GO111MODULE = $( GO111MODULE) $( GO) test -race $( GOOPTS) $( pkgs)
2018-04-19 12:07:10 +03:00
2018-07-12 16:53:34 -05:00
.PHONY : common -format
common-format :
2018-04-19 12:07:10 +03:00
@echo ">> formatting code"
2018-10-23 12:55:53 +02:00
GO111MODULE = $( GO111MODULE) $( GO) fmt $( GOOPTS) $( pkgs)
2018-04-19 12:07:10 +03:00
2018-07-12 16:53:34 -05:00
.PHONY : common -vet
common-vet :
2018-04-19 12:07:10 +03:00
@echo ">> vetting code"
2018-10-23 12:55:53 +02:00
GO111MODULE = $( GO111MODULE) $( GO) vet $( GOOPTS) $( pkgs)
2018-04-19 12:07:10 +03:00
2018-07-12 16:53:34 -05:00
.PHONY : common -staticcheck
common-staticcheck : $( STATICCHECK )
2018-04-19 12:07:10 +03:00
@echo ">> running staticcheck"
2018-10-26 09:30:45 +02:00
i f e q ( , $( wildcard go .mod ) )
$( STATICCHECK) -ignore " $( STATICCHECK_IGNORE) " $( pkgs)
2018-10-25 16:40:05 +02:00
e l s e
2018-10-26 13:49:06 +02:00
$( STATICCHECK) -ignore " $( STATICCHECK_IGNORE) " -checks "SA*" $( pkgs)
2018-10-25 16:40:05 +02:00
e n d i f
2018-04-19 12:07:10 +03:00
2018-07-12 16:53:34 -05:00
.PHONY : common -unused
common-unused : $( GOVENDOR )
2018-10-26 09:30:45 +02:00
i f e q ( , $( wildcard go .mod ) )
2018-04-19 12:07:10 +03:00
@echo ">> running check for unused packages"
2018-04-19 15:07:55 +03:00
@$( GOVENDOR) list +unused | grep . && exit 1 || echo 'No unused packages'
2018-10-23 12:55:53 +02:00
e l s e
@echo ">> running check for unused/missing packages in go.mod"
GO111MODULE = $( GO111MODULE) $( GO) mod tidy
2018-10-26 09:55:52 +02:00
@git diff --exit-code -- go.sum go.mod
2018-10-23 12:55:53 +02:00
@echo ">> running check for unused packages in vendor/"
GO111MODULE = $( GO111MODULE) $( GO) mod vendor
2018-10-26 09:55:52 +02:00
@git diff --exit-code -- go.sum go.mod vendor/
2018-10-23 12:55:53 +02:00
e n d i f
2018-04-19 12:07:10 +03:00
2018-07-12 16:53:34 -05:00
.PHONY : common -build
common-build : promu
2018-04-19 12:07:10 +03:00
@echo ">> building binaries"
2018-10-23 12:55:53 +02:00
GO111MODULE = $( GO111MODULE) $( PROMU) build --prefix $( PREFIX)
2018-04-19 12:07:10 +03:00
2018-07-12 16:53:34 -05:00
.PHONY : common -tarball
common-tarball : promu
2018-04-19 12:07:10 +03:00
@echo ">> building release tarball"
$( PROMU) tarball --prefix $( PREFIX) $( BIN_DIR)
2018-07-12 16:53:34 -05:00
.PHONY : common -docker
common-docker :
2018-07-04 11:27:10 +02:00
docker build -t " $( DOCKER_REPO) / $( DOCKER_IMAGE_NAME) : $( DOCKER_IMAGE_TAG) " .
2018-07-12 16:53:34 -05:00
.PHONY : common -docker -publish
common-docker-publish :
2018-07-04 11:27:10 +02:00
docker push " $( DOCKER_REPO) / $( DOCKER_IMAGE_NAME) "
2018-07-12 16:53:34 -05:00
.PHONY : common -docker -tag -latest
common-docker-tag-latest :
2018-07-04 11:27:10 +02:00
docker tag " $( DOCKER_REPO) / $( DOCKER_IMAGE_NAME) : $( DOCKER_IMAGE_TAG) " " $( DOCKER_REPO) / $( DOCKER_IMAGE_NAME) :latest "
2018-04-19 12:07:10 +03:00
2018-06-11 17:51:28 +02:00
.PHONY : promu
2018-04-19 12:07:10 +03:00
promu :
2018-10-23 12:55:53 +02:00
GOOS = GOARCH = GO111MODULE = off $( GO) get -u github.com/prometheus/promu
2018-04-19 12:07:10 +03:00
2018-06-11 17:51:28 +02:00
.PHONY : $( STATICCHECK )
$(STATICCHECK) :
2018-10-26 13:49:06 +02:00
i f n e q ( , $( wildcard go .mod ) )
# Get staticcheck from a temporary directory to avoid modifying the local go.{mod,sum}.
# See https://github.com/golang/go/issues/27643.
# For now, we are using the next branch of staticcheck because master isn't compatible yet with Go modules.
tmpModule = $$ ( mktemp -d 2>& 1) && \
mkdir -p $$ { tmpModule} /staticcheck && \
cd " $$ {tmpModule} " /staticcheck && \
GO111MODULE = on $( GO) mod init example.com/staticcheck && \
GO111MODULE = on GOOS = GOARCH = $( GO) get -u honnef.co/go/tools/cmd/staticcheck@next && \
rm -rf $$ { tmpModule} ;
e l s e
2018-10-26 09:49:20 +02:00
GOOS = GOARCH = $( GO) get -u honnef.co/go/tools/cmd/staticcheck
2018-04-19 12:07:10 +03:00
2018-06-11 17:51:28 +02:00
.PHONY : $( GOVENDOR )
$(GOVENDOR) :
2018-04-19 12:07:10 +03:00
GOOS = GOARCH = $( GO) get -u github.com/kardianos/govendor
2018-10-23 12:55:53 +02:00
e n d i f