Containers/Makefile

72 lines
1.8 KiB
Makefile
Raw Normal View History

include config.mk
.DEFAULT_GOAL := all
# Disabled due to https://github.com/containers/buildah/issues/5581
#REPO_STAMP := push-stamp
#REPO_PATH := repo/
#REPO_STAMPS := $(addsuffix /${REPO_STAMP},${CONTAINERS})
#
#%/${REPO_STAMP}: %/${BUILD_ID_OUT}
# @mkdir -p ${REPO_PATH}
# buildah push \
# -f oci \
# --compression-format zstd \
# --compression-level 10 \
# $(shell cat $<) \
# oci:${REPO_PATH}:$*:latest
# touch $@
MANIFEST_FILE = ${IMAGE_DIR}/manifest.json
# Autogenerated lists
2023-06-23 17:31:20 +00:00
CONTAINERS := $(shell find ./ -name 'Containerfile' -exec 'dirname' '{}' ';' | cut -d'/' -f2-)
IMAGE_DIRS := $(addsuffix /${IMAGE_DIR},${CONTAINERS})
2023-06-23 17:31:20 +00:00
BUILD_IDS := $(addsuffix /${BUILD_ID_OUT},${CONTAINERS})
BUILD_LOGS := $(addsuffix /${BUILD_LOG},${CONTAINERS})
MANIFESTS := $(addsuffix /${MANIFEST_FILE},${CONTAINERS})
# Make workaround
# Inserting literal commas into function calls without interpreting them as delimiters
, := ,
# Build all containers in order by default
all: unified
unified: $(MANIFESTS) # $(REPO_STAMPS)
localbuild: $(BUILD_IDS)
# Build process
%/${MANIFEST_FILE}: %/${BUILD_ID_OUT}
@mkdir -p $*/${IMAGE_DIR}
2024-03-17 17:55:24 +00:00
buildah push \
-f oci \
2023-06-23 17:31:20 +00:00
$(shell cat $<) \
dir:$*/${IMAGE_DIR}
2023-06-23 17:31:20 +00:00
%/${BUILD_ID_OUT}: %/Containerfile
2023-06-18 17:18:00 +00:00
buildah build \
2024-03-17 17:55:24 +00:00
--jobs 0 \
--network=none \
--logfile=$*/${BUILD_LOG} \
-t $*:latest \
--iidfile $@ \
$(foreach secretpath,$(wildcard $*/secrets/*),\
--secret id=$(patsubst $*/secrets/%,%,${secretpath})$(,)src=${secretpath}) \
2023-06-18 17:18:00 +00:00
$*
# Clean up
clean: cleanbuild cleandirs
cleanbuild:
-rm -rv ${BUILD_IDS}
cleandirs:
-rm -rv ${IMAGE_DIRS}
.PHONY: all clean cleanbuild cleandirs localbuild unified
.SUFFIXES:
# Somehow GNU make forgets these are intermediates if not explicitly stated, feel free to look into it *shrug*
2023-07-13 08:14:27 +00:00
.SECONDARY: $(BUILD_IDS)