2020-02-12 16:07:45 +00:00
|
|
|
# Needs to be defined before including Makefile.common to auto-generate targets
|
2022-02-28 13:33:29 +00:00
|
|
|
DOCKER_ARCHS ?= amd64 arm64 ppc64le
|
2020-02-12 16:07:45 +00:00
|
|
|
DOCKER_REPO ?= treydock
|
2023-05-06 12:35:46 +00:00
|
|
|
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 ./...
|
2020-10-02 17:58:33 +00:00
|
|
|
|
|
|
|
%/.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
|