[SCM] PostGIS branch stable-3.3 updated. 3.3.10-95-g0203ccda53
git at osgeo.org
git at osgeo.org
Mon Jul 27 15:38:51 PDT 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.3 has been updated
via 0203ccda5302c1f129589b654652767fd71b8bc9 (commit)
via bb23751f9a5c38ffaa097275add70e6c1bd43dab (commit)
from 892dc44c1c8cbb13892f45f734d0bfa32c3a40d5 (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 0203ccda5302c1f129589b654652767fd71b8bc9
Merge: 892dc44c1c bb23751f9a
Author: Darafei Praliaskouski <komzpa at gmail.com>
Date: Mon Jul 27 15:38:49 2026 -0700
Merge pull request 'ci: disable stable-3.3 test cluster durability' (!568) from Komzpa/postgis:ci/stable33-test-durability-20260728 into stable-3.3
Reviewed-on: https://gitea.osgeo.org/postgis/postgis/pulls/568
commit bb23751f9a5c38ffaa097275add70e6c1bd43dab
Author: Darafei Praliaskouski <me at komzpa.net>
Date: Tue Jul 28 02:23:51 2026 +0400
ci: disable test cluster durability on stable-3.3
diff --git a/.woodpecker/regress.yml b/.woodpecker/regress.yml
index 71536cf631..4a2ee6f7c3 100644
--- a/.woodpecker/regress.yml
+++ b/.woodpecker/regress.yml
@@ -10,6 +10,8 @@ variables:
# The test image can need crash recovery after clone-local startup. Under
# multi-workflow I/O load, Debian's default 60-second pg_ctl wait is short.
- printf '%s\n' "pg_ctl_options = '-t 300'" > /etc/postgresql/$${PGVER}/main/pg_ctl.conf
+ - install -d /etc/postgresql/$${PGVER}/main/conf.d
+ - printf '%s\n' "fsync = off" "full_page_writes = off" "synchronous_commit = off" > /etc/postgresql/$${PGVER}/main/conf.d/postgis-ci-durability.conf
- export RUNTESTFLAGS="-v
--after-create-db-script $${CI_WORKSPACE}/regress/hooks/standard-conforming-strings-off.sql"
- export SRCDIR=$${CI_WORKSPACE}
diff --git a/ci/dronie/postgis_regress.sh b/ci/dronie/postgis_regress.sh
index 0ee30f6da8..20fb99589a 100644
--- a/ci/dronie/postgis_regress.sh
+++ b/ci/dronie/postgis_regress.sh
@@ -3,6 +3,12 @@
# Exit on first error
set -e
+install -d /etc/postgresql/$PGVER/main/conf.d
+cat > /etc/postgresql/$PGVER/main/conf.d/postgis-ci-durability.conf <<'EOF'
+fsync = off
+full_page_writes = off
+synchronous_commit = off
+EOF
service postgresql start $PGVER
export PGPORT=`grep ^port /etc/postgresql/$PGVER/main/postgresql.conf | awk '{print $3}'`
export PATH=/usr/lib/postgresql/$PGVER/bin:$PATH
-----------------------------------------------------------------------
Summary of changes:
.woodpecker/regress.yml | 2 ++
ci/dronie/postgis_regress.sh | 6 ++++++
2 files changed, 8 insertions(+)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list