[postgis-tickets] [SCM] PostGIS branch stable-3.3 updated. 3.3.1-18-gf9096602c

git at osgeo.org git at osgeo.org
Thu Oct 27 19:28:30 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, stable-3.3 has been updated
       via  f9096602ccde96d41e236390dc601b55ffb632c9 (commit)
      from  fce11401d63e156962e8ac17de2fbc557c0b2692 (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 f9096602ccde96d41e236390dc601b55ffb632c9
Author: Regina Obe <lr at pcorp.us>
Date:   Thu Oct 27 22:28:20 2022 -0400

    Make Berrie64 stop on first error

diff --git a/ci/berrie64/postgis_regress.sh b/ci/berrie64/postgis_regress.sh
index 1f9cb18d3..7cd6bbdd5 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,21 +24,15 @@ 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 '.'`
- if [ "$?" != "0" ]; then
-   err_status=$?
- fi
+ err_status=$?
 
 
 if [ -d $PGDATA/postmaster.pid ] ; then

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

Summary of changes:
 ci/berrie64/postgis_regress.sh | 13 ++++---------
 1 file changed, 4 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list