[SCM] PostGIS branch stable-3.4 updated. 3.4.6-96-gff996f11cb
git at osgeo.org
git at osgeo.org
Mon Jul 27 15:38:43 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.4 has been updated
via ff996f11cb5e7645510394ca6233a76374a12094 (commit)
via e674b3153b1a17bf761df455d2db09c969d0aece (commit)
from 3d3838b7fde93c855196c9999f100ae9c302e5aa (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 ff996f11cb5e7645510394ca6233a76374a12094
Merge: 3d3838b7fd e674b3153b
Author: Darafei Praliaskouski <komzpa at gmail.com>
Date: Mon Jul 27 15:38:41 2026 -0700
Merge pull request 'ci: disable stable-3.4 test cluster durability' (!570) from Komzpa/postgis:ci/stable34-test-durability-20260728 into stable-3.4
Reviewed-on: https://gitea.osgeo.org/postgis/postgis/pulls/570
commit e674b3153b1a17bf761df455d2db09c969d0aece
Author: Darafei Praliaskouski <me at komzpa.net>
Date: Tue Jul 28 02:24:09 2026 +0400
ci: disable test cluster durability on stable-3.4
diff --git a/.woodpecker/regress.yml b/.woodpecker/regress.yml
index b224b6f321..0761dfb28c 100644
--- a/.woodpecker/regress.yml
+++ b/.woodpecker/regress.yml
@@ -8,6 +8,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 SRCDIR=$${CI_WORKSPACE}
- export RUNTESTFLAGS="-v
--after-create-db-script $${SRCDIR}/regress/hooks/standard-conforming-strings-off.sql"
diff --git a/ci/dronie/postgis_regress.sh b/ci/dronie/postgis_regress.sh
index 48b5c30d11..086fcef339 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