build: skip compat/utils images for riscv64 architecture

This commit is contained in:
Aiden McClelland
2026-03-26 15:13:54 -06:00
parent 9bc0fbd5b1
commit 8d9be64c19

View File

@@ -14,7 +14,10 @@ else
DOCKER_PLATFORM="linux/$ARCH"
fi
IMAGES=("start9/compat:latest" "start9/utils:latest" "tonistiigi/binfmt:latest")
IMAGES=("tonistiigi/binfmt:latest")
if [ "$ARCH" != "riscv64" ]; then
IMAGES=("start9/compat:latest" "start9/utils:latest" "${IMAGES[@]}")
fi
mkdir -p "$DESTDIR"