You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2022/02/25 21:48:41 UTC

[couchdb-docker] 01/02: Revert "Drop ppc64le until suitable CI replacement identified (#199)"

This is an automated email from the ASF dual-hosted git repository.

kocolosk pushed a commit to branch update-debian-erlang-spidermonkey
in repository https://gitbox.apache.org/repos/asf/couchdb-docker.git

commit b83ced77598c6eae186f95ec15691adb68f3e005
Author: Adam Kocoloski <ad...@airbnb.com>
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