cgroup_exporter/Makefile

24 lines
595 B
Makefile
Raw Permalink Normal View History

2020-02-12 16:07:45 +00:00
# Needs to be defined before including Makefile.common to auto-generate targets
DOCKER_ARCHS ?= amd64 arm64 ppc64le
2020-02-12 16:07:45 +00:00
DOCKER_REPO ?= treydock
export GOPATH ?= $(firstword $(subst :, ,$(shell go env GOPATH)))
2020-02-12 16:07:45 +00:00
include Makefile.common
2020-02-12 17:26:18 +00:00
DOCKER_IMAGE_NAME ?= cgroup_exporter
2020-02-20 19:29:26 +00:00
coverage:
go test -race -coverpkg=./... -coverprofile=coverage.txt -covermode=atomic ./...
%/.unpacked: %.ttar
@echo ">> extracting fixtures"
./ttar -C $(dir $*) -x -f $*.ttar
touch $@
update_fixtures:
rm -vf fixtures/.unpacked
./ttar -c -f fixtures.ttar fixtures/
.PHONY: test
test: fixtures/.unpacked common-test