-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (26 loc) · 776 Bytes
/
Makefile
File metadata and controls
34 lines (26 loc) · 776 Bytes
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
# BUILD_DIR is where random build artifacts can be placed.
BUILD_DIR = build
IMAGE_REPO = quay.io/opdev
.PHONY: build_dir
build_dir:
test -e $(BUILD_DIR) || mkdir $(BUILD_DIR)
.PHONY: clean
clean:
rm --recursive --verbose $(BUILD_DIR)
.PHONY: images
images: image.certify-operators image.certify-containers image.certify-helmcharts
.PHONY: image.certify-containers
image.certify-containers:
podman build \
--tag $(IMAGE_REPO)/certify-containers \
images/certify-containers
.PHONY: image.certify-helmcharts
image.certify-helmcharts:
podman build \
--tag $(IMAGE_REPO)/certify-helmcharts \
images/certify-helmcharts
.PHONY: image.certify-operators
image.certify-operators:
podman build \
--tag $(IMAGE_REPO)/certify-operators \
images/certify-operators