You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2023/05/04 20:45:57 UTC

[couchdb-ci] branch refresh-pull-all-images updated (da0a642 -> deabb75)

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

vatamane pushed a change to branch refresh-pull-all-images
in repository https://gitbox.apache.org/repos/asf/couchdb-ci.git


 discard da0a642  Refresh docker pull images
     add 8b9d771  Update Erlang to latest patch versions
     add ebface2  Remove foundationdb bits
     add c4e405f  Merge pull request #47 from apache/remove_foundationdb
     add 1eeca23  Install Java 11
     add f94e128  Also install maven
     add c5f8a98  Merge pull request #48 from apache/install-java-11
     add ac15498  build erlang from release tarball
     new deabb75  Refresh docker pull images

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (da0a642)
            \
             N -- N -- N   refs/heads/refresh-pull-all-images (deabb75)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 bin/apt-dependencies.sh     | 10 ----------
 bin/install-dependencies.sh |  4 ++--
 bin/pkg-dependencies.sh     |  4 ----
 bin/source-erlang.sh        | 11 ++++++++---
 bin/yum-dependencies.sh     | 11 -----------
 dockerfiles/centos-7        | 12 +++++++++++-
 dockerfiles/debian-bullseye | 12 +++++++++++-
 dockerfiles/debian-buster   | 12 +++++++++++-
 dockerfiles/rockylinux-8    | 12 +++++++++++-
 dockerfiles/ubuntu-bionic   | 12 +++++++++++-
 dockerfiles/ubuntu-focal    | 12 +++++++++++-
 dockerfiles/ubuntu-jammy    | 12 +++++++++++-
 12 files changed, 87 insertions(+), 37 deletions(-)


[couchdb-ci] 01/01: Refresh docker pull images

Posted by va...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vatamane pushed a commit to branch refresh-pull-all-images
in repository https://gitbox.apache.org/repos/asf/couchdb-ci.git

commit deabb751412cac55318c3be08180be617a5cfc08
Author: Nick Vatamaniuc <va...@gmail.com>
AuthorDate: Thu May 4 16:41:10 2023 -0400

    Refresh docker pull images
    
    We updated the image but forgot to update this list
    
    So we kept removing the new images and pulling them too often, thus hitting
    rate limits from dockerhub.
---
 pull-all-couchdbdev-docker | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/pull-all-couchdbdev-docker b/pull-all-couchdbdev-docker
index ae8ff4d..70edd4a 100644
--- a/pull-all-couchdbdev-docker
+++ b/pull-all-couchdbdev-docker
@@ -5,17 +5,13 @@ DOCKER_ORG="apache"
 # These are the images that are currently being used, so don't `docker rmi` them on cleanup.
 KEEP_IMAGES=(
 couchdbci-debian:bullseye-erlang-25.3
-couchdbci-debian:bullseye-erlang-24.3.4.10
-couchdbci-debian:bullseye-erlang-23.3.4.18
 couchdbci-debian:buster-erlang-24.3.4.10
-couchdbci-debian:buster-erlang-23.3.4.18
+couchdbci-debian:bullseye-erlang-24.3.4.10
 couchdbci-centos:8-erlang-24.3.4.10
 couchdbci-centos:7-erlang-24.3.4.10
+couchdbci-ubuntu:bionic-erlang-24.3.4.10
 couchdbci-ubuntu:jammy-erlang-24.3.4.10
 couchdbci-ubuntu:focal-erlang-24.3.4.10
-couchdbci-ubuntu:focal-erlang-23.3.4.18
-couchdbci-ubuntu:bionic-erlang-24.3.4.10
-couchdbci-ubuntu:bionic-erlang-23.3.4.18
 )
 
 for image in ${KEEP_IMAGES[*]}