[SCM] PostGIS branch stable-3.4 updated. 3.4.4-84-g72c072528
git at osgeo.org
git at osgeo.org
Mon Feb 9 02:16:59 PST 2026
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.4 has been updated
via 72c0725280b0132bc713e08e8d59597bc776b41d (commit)
from 7796c5a557604d7f5c692088c0addad6e5d08049 (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 72c0725280b0132bc713e08e8d59597bc776b41d
Author: Sandro Santilli <strk at kbt.io>
Date: Mon Feb 9 11:13:47 2026 +0100
Have debbie still check upgrades and only skip downgrade testing
References #6042 for PostGIS 3.4.5
diff --git a/ci/debbie/postgis_regress.sh b/ci/debbie/postgis_regress.sh
index 7a6dfac24..9370d7728 100644
--- a/ci/debbie/postgis_regress.sh
+++ b/ci/debbie/postgis_regress.sh
@@ -17,7 +17,8 @@ export MAKE_EXTENSION=1
export DUMP_RESTORE=0
export MAKE_LOGBT=0
export NO_SFCGAL=0
-export MAKE_UPGRADE=0
+export CHECK_UPGRADES=1
+export CHECK_DOWNGRADES=0 # also requires CHECK_UPGRADES=1 to really check downgrades
## end variables passed in by jenkins
@@ -114,9 +115,13 @@ if [ "$MAKE_GARDEN" = "1" ]; then
fi
# Test all available upgrades
-# TODO: protect via some variable ?
-if [ "$MAKE_UPGRADE" = "1" ]; then
+if [ "$CHECK_UPGRADES" = "1" ]; then
+ UPGRADE_CHECK_OPTS=""
+ if [ "$CHECK_DOWNGRADES" = "0" ]; then
+ UPGRADE_CHECK_OPTS="--skip upgrade"
+ fi
utils/check_all_upgrades.sh \
+ ${UPGRADE_CHECK_OPTS} \
`grep '^POSTGIS_' Version.config | cut -d= -f2 | paste -sd '.'`
if [ "$?" != "0" ]; then
exit $?
-----------------------------------------------------------------------
Summary of changes:
ci/debbie/postgis_regress.sh | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list