This is an automated email from the ASF dual-hosted git repository. kocolosk pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/couchdb-docker.git
commit beb5062a64fc293d6cb7f9df39b4f04336d6a695 Author: Adam Kocoloski <[email protected]> AuthorDate: Fri Feb 25 15:53:16 2022 -0500 Revert "Drop ppc64le until suitable CI replacement identified (#199)" This reverts commit e3ca492, since ppc64le machines are back in the CI matrix. --- build.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index 44a4f58..e3f7cf2 100755 --- a/build.sh +++ b/build.sh @@ -33,8 +33,8 @@ set -e PROMPT="Are you sure (y/n)? " QEMU="YES" -PLATFORMS="amd64 arm64v8" -BUILDX_PLATFORMS="linux/amd64,linux/arm64/v8" +PLATFORMS="amd64 arm64v8 ppc64le" +BUILDX_PLATFORMS="linux/amd64,linux/arm64/v8,linux/ppc64le" prompt() { if [ -z "${PROMPT}" ] @@ -153,11 +153,15 @@ push() { fi docker manifest create apache/couchdb:$tag_as \ apache/couchdb:amd64-$1 \ - apache/couchdb:arm64v8-$1 + apache/couchdb:arm64v8-$1 \ + apache/couchdb:ppc64le-$1 docker manifest annotate apache/couchdb:$tag_as \ apache/couchdb:arm64v8-$1 --os linux --arch arm64 --variant v8 + docker manifest annotate apache/couchdb:$tag_as \ + apache/couchdb:ppc64le-$1 --os linux --arch ppc64le + docker manifest push --purge apache/couchdb:$tag_as docker manifest inspect apache/couchdb:$tag_as
