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

wohali pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb-docker.git


The following commit(s) were added to refs/heads/main by this push:
     new e3ca492  Drop ppc64le until suitable CI replacement identified (#199)
e3ca492 is described below

commit e3ca492e13f65ffd72593ac3d7c43c737787e2b2
Author: Joan Touzet <[email protected]>
AuthorDate: Tue Mar 16 18:29:54 2021 -0400

    Drop ppc64le until suitable CI replacement identified (#199)
---
 build.sh | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/build.sh b/build.sh
index 70bea97..b0291dc 100755
--- a/build.sh
+++ b/build.sh
@@ -31,8 +31,8 @@ set -e
 
 PROMPT="Are you sure (y/n)? "
 QEMU="YES"
-PLATFORMS="amd64 arm64v8 ppc64le"
-BUILDX_PLATFORMS="linux/amd64,linux/arm64/v8,linux/ppc64le"
+PLATFORMS="amd64 arm64v8"
+BUILDX_PLATFORMS="linux/amd64,linux/arm64/v8"
 
 prompt() {
   if [ -z "${PROMPT}" ]
@@ -124,15 +124,11 @@ push() {
   fi
   docker manifest create apache/couchdb:$tag_as \
     apache/couchdb:amd64-$1 \
-    apache/couchdb:arm64v8-$1 \
-    apache/couchdb:ppc64le-$1
+    apache/couchdb:arm64v8-$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

Reply via email to