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

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


The following commit(s) were added to refs/heads/main by this push:
     new ed34c85  build.sh updates for rhel-10-like systems
ed34c85 is described below

commit ed34c850670dc0beb1c87a3936ce9089e909fc0d
Author: Nick Vatamaniuc <[email protected]>
AuthorDate: Mon Feb 23 03:00:10 2026 -0500

    build.sh updates for rhel-10-like systems
---
 build.sh | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/build.sh b/build.sh
index 3b224d6..6602722 100755
--- a/build.sh
+++ b/build.sh
@@ -30,11 +30,11 @@ SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd 
)"
 # TODO derive these by interrogating the couchdb-ci repo rather than hard 
coding the list
 DEBIANS="debian-bullseye debian-bookworm debian-trixie"
 UBUNTUS="ubuntu-jammy ubuntu-noble"
-CENTOSES="centos-8 centos-9"
-XPLAT_BASES="debian-bullseye debian-bookworm debian-trixie ubuntu-jammy 
ubuntu-noble centos-8 centos-9"
+CENTOSES="centos-8 centos-9 centos-10"
+XPLAT_BASES="debian-bullseye debian-bookworm debian-trixie ubuntu-jammy 
ubuntu-noble centos-8 centos-9 centos-10"
 XPLAT_ARCHES="arm64 ppc64le s390x"
 BINARY_API="https://apache.jfrog.io/artifactory";
-ERLANGVERSION=${ERLANGVERSION:-26.2.5.11}
+ERLANGVERSION=${ERLANGVERSION:-26.2.5.17}
 REPO_NAME="couch-dev"
 
 split-os-ver() {
@@ -118,6 +118,7 @@ build-all-couch() {
               ( ${base} == "centos-8" && ${arch} == "arm64" ) ||
               ( ${base} == "centos-8" && ${arch} == "ppc64le" ) ||
               ( ${base} == "centos-9" && ${arch} == "ppc64le" ) ||
+              ( ${base} == "centos-10" && ${arch} == "ppc64le") ||
               ( ${base} == "debian-bullseye" && ${arch} == "ppc64le" ) ||
               ( ${base} == "debian-bullseye" && ${arch} == "s390x") ||
               ( ${base} == "debian-bookworm" && ${arch} == "ppc64le" ) ||
@@ -192,6 +193,12 @@ upload-couch() {
         RELPATH="${DIST}/${PKGARCH}/${fname}"
         SUFFIX=""
         binary-upload
+    elif [ ${DIST} == "el10" ]; then
+        # see https://github.com/apache/couchdb-pkg/issues/103
+        DIST="el10Server"
+        RELPATH="${DIST}/${PKGARCH}/${fname}"
+        SUFFIX=""
+        binary-upload
     fi
   done
   local reindex_url="${BINARY_API}/api/deb/reindex/${REPO_NAME}-deb"

Reply via email to