71 lines
2.5 KiB
Makefile
71 lines
2.5 KiB
Makefile
ifeq ($(NOCACHE), 1)
|
|
CACHE_BUST=$(shell date)
|
|
NOCACHE_FLAG=--no-cache
|
|
else
|
|
CACHE_BUST=0
|
|
NOCACHE_FLAG=
|
|
endif
|
|
export CACHE_BUST
|
|
export NOCACHE_FLAG
|
|
|
|
# Build package with chosen $(BUILDER)
|
|
# Supported BUILDERs: docker
|
|
# Usage: $(call build,core/$(NAME),$(VERSION),$(TARGET),$(EXTRA_ARGS))
|
|
# Notes:
|
|
# - Packages are expected to use the following layer names in order:
|
|
# - "fetch": [optional] obtain any artifacts from the internet.
|
|
# - "build": [optional] do any required build work
|
|
# - "package": [required] scratch layer exporting artifacts for distribution
|
|
# - "test": [optional] define any tests
|
|
# - Packages may prefix layer names with "text-" if more than one is desired
|
|
# - VERSION will be set as a build-arg if defined, otherwise it is "latest"
|
|
# - TARGET defaults to "package"
|
|
# - EXTRA_ARGS will be blindly injected
|
|
# - packages may also define a "test" layer
|
|
# - the ulimit line is to workaround a bug in patch when the nofile limit is too large:
|
|
# https://savannah.gnu.org/bugs/index.php?62958
|
|
# TODO:
|
|
# - try to disable networking on fetch layers with something like:
|
|
# $(if $(filter fetch,$(lastword $(subst -, ,$(TARGET)))),,--network=none)
|
|
# - actually output OCI files for each build (vs plain tar)
|
|
# - output manifest.txt of all tar/digest hashes for an easy git diff
|
|
# - support buildah and podman
|
|
|
|
define build
|
|
$(eval NAME := $(1))
|
|
$(eval VERSION := $(if $(2),$(2),latest))
|
|
$(eval TARGET := $(if $(3),$(3),package))
|
|
$(eval TEMPFILE := out/.$(notdir $(basename $@)).tmp.tar)
|
|
$(eval BUILD_CMD := \
|
|
DOCKER_BUILDKIT=1 \
|
|
BUILDKIT_MULTI_PLATFORM=1 \
|
|
SOURCE_DATE_EPOCH=1 \
|
|
docker \
|
|
build \
|
|
--platform linux/amd64 \
|
|
--ulimit nofile=2048:16384 \
|
|
--tag sui \
|
|
--build-arg CACHE_BUST="$(CACHE_BUST)" \
|
|
--build-arg SOURCE_DATE_EPOCH=1 \
|
|
--build-arg CORES=$(shell nproc --all) \
|
|
--progress=plain \
|
|
$(if $(filter latest,$(VERSION)),,--build-arg VERSION=$(VERSION)) \
|
|
--output type=oci,rewrite-timestamp=true,force-compression=true,name=$(NAME),annotation.org.opencontainers.image.revision=$(REVISION),annotation.org.opencontainers.image.version=$(VERSION),tar=false,dest=out/$(NAME) \
|
|
--target $(TARGET) \
|
|
$(NOCACHE_FLAG) \
|
|
-f packages/$(NAME)/Containerfile \
|
|
packages/$(NAME) \
|
|
)
|
|
$(eval TIMESTAMP := $(shell TZ=GMT date +"%Y-%m-%dT%H:%M:%SZ"))
|
|
mkdir -p out/ \
|
|
&& echo $(TIMESTAMP) $(BUILD_CMD) start >> out/build.log \
|
|
&& rm -rf out/$(NAME) \
|
|
&& $(BUILD_CMD) \
|
|
&& echo $(TIMESTAMP) $(BUILD_CMD) end >> out/build.log;
|
|
endef
|
|
|
|
.PHONY: sui
|
|
sui: out/sui/index.json
|
|
out/sui/index.json: packages/sui/Containerfile
|
|
$(call build,sui)
|