forked from weaveworks/grafanalib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
80 lines (63 loc) · 2.39 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
.PHONY: all clean clean-deps lint test deps coverage
.DEFAULT_GOAL := all
# Boiler plate for bulding Docker containers.
# All this must go at top of file I'm afraid.
IMAGE_PREFIX := quay.io/weaveworks
IMAGE_TAG := $(shell ./tools/image-tag)
GIT_REVISION := $(shell git rev-parse HEAD)
UPTODATE := .uptodate
# Building Docker images is now automated. The convention is every directory
# with a Dockerfile in it builds an image calls quay.io/weaveworks/<dirname>.
# Dependencies (i.e. things that go in the image) still need to be explicitly
# declared.
%/$(UPTODATE): %/Dockerfile
$(SUDO) docker build --build-arg=revision=$(GIT_REVISION) -t $(IMAGE_PREFIX)/$(shell basename $(@D)) $(@D)/
$(SUDO) docker tag $(IMAGE_PREFIX)/$(shell basename $(@D)) $(IMAGE_PREFIX)/$(shell basename $(@D)):$(IMAGE_TAG)
touch $@
# Get a list of directories containing Dockerfiles
DOCKERFILES=$(shell find * -type f -name Dockerfile ! -path "tools/*" ! -path "vendor/*")
UPTODATE_FILES=$(patsubst %/Dockerfile,%/$(UPTODATE),$(DOCKERFILES))
DOCKER_IMAGE_DIRS=$(patsubst %/Dockerfile,%,$(DOCKERFILES))
IMAGE_NAMES=$(foreach dir,$(DOCKER_IMAGE_DIRS),$(patsubst %,$(IMAGE_PREFIX)/%,$(shell basename $(dir))))
# Python-specific stuff
TOX := $(shell command -v tox 2> /dev/null)
PIP := $(shell command -v pip 2> /dev/null)
FLAKE8 := $(shell command -v flake8 2> /dev/null)
.ensure-tox: .ensure-pip
ifndef TOX
rm -f .ensure-tox
$(error "tox is not installed. Install with `pip install [--user] tox`.")
endif
touch .ensure-tox
.ensure-pip:
ifndef PIP
rm -f .ensure-pip
$(error "pip is not installed. Install with `python -m [--user] ensurepip`.")
endif
touch .ensure-pip
.ensure-flake8: .ensure-pip
ifndef FLAKE8
rm -f .ensure-flake8
$(error "flake8 is not installed. Install with `pip install [--user] flake8`.")
endif
touch .ensure-pip
images:
$(info $(IMAGE_NAMES))
all: $(UPTODATE_FILES) test lint coverage
deps: setup.py .ensure-tox tox.ini
$(VIRTUALENV_BIN)/flake8 $(VIRTUALENV_BIN)/py.test: $(DEPS_UPTODATE)
gfdatasource/$(UPTODATE): gfdatasource/*
lint: .ensure-flake8
$(FLAKE8) gfdatasource/gfdatasource grafanalib
test: .ensure-tox
$(TOX) --skip-missing-interpreters
coverage:
$(TOX) -e coverage
clean:
$(SUDO) docker rmi $(IMAGE_NAMES) >/dev/null 2>&1 || true
rm -rf $(UPTODATE_FILES)
rm -rf grafanalib.egg-info
rm -f .ensure-pip .ensure-tox .ensure-flake8
find . -name '*.pyc' | xargs rm
clean-deps:
rm -rf $(VIRTUALENV_DIR)