-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
150 lines (130 loc) · 4.74 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
ifneq (,)
.error This Makefile requires GNU Make.
endif
# Ensure additional Makefiles are present
MAKEFILES = Makefile.docker Makefile.lint
$(MAKEFILES): URL=https://raw.githubusercontent.com/devilbox/makefiles/master/$(@)
$(MAKEFILES):
@if ! (curl --fail -sS -o $(@) $(URL) || wget -O $(@) $(URL)); then \
echo "Error, curl or wget required."; \
echo "Exiting."; \
false; \
fi
include $(MAKEFILES)
# Set default Target
.DEFAULT_GOAL := help
# -------------------------------------------------------------------------------------------------
# Default configuration
# -------------------------------------------------------------------------------------------------
# Own vars
TAG = latest
# Makefile.docker overwrites
NAME = yamlfmt
VERSION = latest
IMAGE = cytopia/yamlfmt
FLAVOUR = latest
FILE = Dockerfile
DIR = Dockerfiles
# Building from master branch: Tag == 'latest'
ifeq ($(strip $(TAG)),latest)
ifeq ($(strip $(VERSION)),latest)
DOCKER_TAG = $(FLAVOUR)
else
ifeq ($(strip $(FLAVOUR)),latest)
DOCKER_TAG = $(VERSION)
else
DOCKER_TAG = $(FLAVOUR)-$(VERSION)
endif
endif
# Building from any other branch or tag: Tag == '<REF>'
else
ifeq ($(strip $(FLAVOUR)),latest)
DOCKER_TAG = $(VERSION)-$(TAG)
else
DOCKER_TAG = $(FLAVOUR)-$(VERSION)-$(TAG)
endif
endif
# Makefile.lint overwrites
FL_IGNORES = .git/,.github/
SC_IGNORES = .git/,.github/
JL_IGNORES = .git/,.github/
# -------------------------------------------------------------------------------------------------
# Default Target
# -------------------------------------------------------------------------------------------------
.PHONY: help
help:
@echo "lint Lint project files and repository"
@echo
@echo "build [ARCH=...] [TAG=...] Build Docker image"
@echo "rebuild [ARCH=...] [TAG=...] Build Docker image without cache"
@echo "push [ARCH=...] [TAG=...] Push Docker image to Docker hub"
@echo
@echo "manifest-create [ARCHES=...] [TAG=...] Create multi-arch manifest"
@echo "manifest-push [TAG=...] Push multi-arch manifest"
@echo
@echo "test [ARCH=...] Test built Docker image"
@echo
# -------------------------------------------------------------------------------------------------
# Docker Targets
# -------------------------------------------------------------------------------------------------
.PHONY: build
build: ARGS=--build-arg VERSION=$(VERSION)
build: docker-arch-build
.PHONY: rebuild
rebuild: ARGS=--build-arg VERSION=$(VERSION)
rebuild: docker-arch-rebuild
.PHONY: push
push: docker-arch-push
# -------------------------------------------------------------------------------------------------
# Manifest Targets
# -------------------------------------------------------------------------------------------------
.PHONY: manifest-create
manifest-create: docker-manifest-create
.PHONY: manifest-push
manifest-push: docker-manifest-push
# -------------------------------------------------------------------------------------------------
# Test Targets
# -------------------------------------------------------------------------------------------------
.PHONY: test
test: _test-run-ok
test: _test-run-fail
.PHONY: _test-run-ok
_test-run-ok:
@echo "------------------------------------------------------------"
@echo "- Testing valid yaml files"
@echo "------------------------------------------------------------"
@if ! docker run --rm --platform $(ARCH) -v $(CURRENT_DIR)/tests/ok:/data $(IMAGE):$(DOCKER_TAG) ok1.yml ; then \
echo "Failed"; \
exit 1; \
fi; \
if ! docker run --rm --platform $(ARCH) -v $(CURRENT_DIR)/tests/ok:/data $(IMAGE):$(DOCKER_TAG) ok2.yml ; then \
echo "Failed"; \
exit 1; \
fi; \
if ! docker run --rm --platform $(ARCH) -v $(CURRENT_DIR)/tests/ok:/data $(IMAGE):$(DOCKER_TAG) '*.yml' ; then \
echo "Failed"; \
exit 1; \
fi; \
echo "Success";
.PHONY: _test-run-fail
_test-run-fail:
@echo "------------------------------------------------------------"
@echo "- Testing invalid yaml files"
@echo "------------------------------------------------------------"
@if docker run --rm --platform $(ARCH) -v $(CURRENT_DIR)/tests/fail:/data $(IMAGE):$(DOCKER_TAG) fail1.yml ; then \
echo "Failed"; \
exit 1; \
fi; \
if docker run --rm --platform $(ARCH) -v $(CURRENT_DIR)/tests/fail:/data $(IMAGE):$(DOCKER_TAG) fail2.yml ; then \
echo "Failed"; \
exit 1; \
fi; \
if docker run --rm --platform $(ARCH) -v $(CURRENT_DIR)/tests/fail:/data $(IMAGE):$(DOCKER_TAG) notexisting.yml ; then \
echo "Failed"; \
exit 1; \
fi; \
if docker run --rm --platform $(ARCH) -v $(CURRENT_DIR)/tests/fail:/data $(IMAGE):$(DOCKER_TAG) '*.yml' ; then \
echo "Failed"; \
exit 1; \
fi; \
echo "Success";