Add buildah multiarch build commands to build script

HubbeKing-multiplatform-builds
Hubbe 7 days ago committed by GitHub
parent 4c943a0737
commit cc7d1ba931
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

50
build

@ -63,23 +63,59 @@ case "${CACHE:-}" in
;; ;;
esac esac
# check for MULTIPLATFORM flag. error out if we're not using buildah for now. docker buildx should be able to do it too, but needs testing
if [ -n "$MULTIPLATFORM" ]; then
if [ "$BUILD_CMD" == "docker" ]; then
echo "Multiplatform builds are not yet supported with docker! Use buildah instead."
exit 1
fi
fi
for component in "${COMPONENTS[@]}"; do for component in "${COMPONENTS[@]}"; do
echo "Building image for $component" echo "Building image for $component"
if [ -n "$MULTIPLATFORM" ]; then
echo "Creating multi-arch manifest"
"$BUILD_CMD" manifest create "wubloader-$component"
fi
latest="$BASE/wubloader-$component:latest" latest="$BASE/wubloader-$component:latest"
specific="$BASE/wubloader-$component:$TAG" specific="$BASE/wubloader-$component:$TAG"
# no way to build multi-arch in parallel, so just build amd64 first and then arm64.
# caching should work with both, so that'll make things less painful at least.
"$BUILD_CMD" build \ "$BUILD_CMD" build \
-f "$component/Dockerfile" \ -f "$component/Dockerfile" \
-t "$latest" \ -t "$latest" \
-t "$specific" \ -t "$specific" \
--manifest "wubloader-$component"
--arch amd64
"${CACHE_ARGS[@]}" \
.
"$BUILD_CMD" build \
-f "$component/Dockerfile" \
-t "$latest" \
-t "$specific" \
--manifest "wubloader-$component"
--arch arm64
"${CACHE_ARGS[@]}" \ "${CACHE_ARGS[@]}" \
. .
echo "Built image wubloader-$component:$TAG" echo "Built image wubloader-$component:$TAG"
if [ -n "$PUSH" ]; then if [ -n "$MULTIPLATFORM ]; then
echo "Pushing tag $specific" # manifest pushes are buildah-specific. docker buildx multiplatform builds have different syntax...
"$BUILD_CMD" push "$specific" if [ -n "$PUSH" ]; then
fi echo "Pushing tag $specific"
if [ "$PUSH" == "latest" ]; then "BUILD_CMD" manifest push --all "docker://$specific"
echo "Pushing tag $latest" fi
"$BUILD_CMD" push "$latest" if [ "$PUSH" == "latest" ]; then
echo "Pushing tag $latest"
"$BUILD_CMD" manifest push --all "docker://$latest"
fi
else
if [ -n "$PUSH" ]; then
echo "Pushing tag $specific"
"$BUILD_CMD" push "$specific"
fi
if [ "$PUSH" == "latest" ]; then
echo "Pushing tag $latest"
"$BUILD_CMD" push "$latest"
fi
fi fi
done done

Loading…
Cancel
Save