[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-246-g94b5054ca

git at osgeo.org git at osgeo.org
Sat Oct 22 20:58:23 PDT 2022


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, master has been updated
       via  94b5054ca35fdfeada626d28f654daa52207b2c4 (commit)
       via  7a76e539fb556304b1c12d1b7d8ee725000011f9 (commit)
      from  5d4cdbd1b1beaffbec8a92f72be22d860a598962 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 94b5054ca35fdfeada626d28f654daa52207b2c4
Author: Regina Obe <lr at pcorp.us>
Date:   Sat Oct 22 23:58:14 2022 -0400

    Change berries to use GEOS 3.11 branches so they don't crash on garden tests

diff --git a/ci/berrie/configs.sh b/ci/berrie/configs.sh
index b91a960a3..9426fb598 100644
--- a/ci/berrie/configs.sh
+++ b/ci/berrie/configs.sh
@@ -1,5 +1,5 @@
 export WORKSPACE=/home/jenkins/workspace
-export GEOS_VER=3.11.0
+export GEOS_VER=3.11.1
 
 export OS_BUILD=32
 export PG_VER=15
diff --git a/ci/berrie64/configs.sh b/ci/berrie64/configs.sh
index aa6d39049..745b6edbd 100644
--- a/ci/berrie64/configs.sh
+++ b/ci/berrie64/configs.sh
@@ -1,5 +1,5 @@
 export WORKSPACE=/home/jenkins/workspace
-export GEOS_VER=3.11.0
+export GEOS_VER=3.11.1
 
 export OS_BUILD=64
 export PG_VER=15

commit 7a76e539fb556304b1c12d1b7d8ee725000011f9
Author: Regina Obe <lr at pcorp.us>
Date:   Sat Oct 22 23:54:50 2022 -0400

    Have berrie64 end on first error

diff --git a/ci/berrie64/postgis_regress.sh b/ci/berrie64/postgis_regress.sh
index 1f9cb18d3..2faa15a47 100644
--- a/ci/berrie64/postgis_regress.sh
+++ b/ci/berrie64/postgis_regress.sh
@@ -1,4 +1,5 @@
 #!/usr/bin/env bash
+set -e
 # Berrie64 is a 64-bit Rasberry Pi Arm managed by Bruce Rindahl
 ## BRANCH is passed in via jenkins which is set via gitea web hook
 #export BRANCH=618a67b1d6fc223dd5a4c0b02c824939f21dbd65
@@ -23,15 +24,10 @@ make check RUNTESTFLAGS="-v"
 make install
 
 make check RUNTESTFLAGS="-v --extension"
-if [ "$?" != "0" ]; then
-	err_status=$?
-fi
-
+err_status=$?
 
 make garden
-if [ "$?" != "0" ]; then
-	err_status=$?
-fi
+err_status=$?
 
 utils/check_all_upgrades.sh \
     `grep '^POSTGIS_' Version.config | cut -d= -f2 | paste -sd '.'`

-----------------------------------------------------------------------

Summary of changes:
 ci/berrie/configs.sh           |  2 +-
 ci/berrie64/configs.sh         |  2 +-
 ci/berrie64/postgis_regress.sh | 10 +++-------
 3 files changed, 5 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list