[SCM] PostGIS branch stable-3.5 updated. 3.5.7-88-ga575a4b246

git at osgeo.org git at osgeo.org
Mon Jul 27 15:38:31 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.5 has been updated
       via  a575a4b2461cd2092842c059e50931902f97cde2 (commit)
       via  55cb7d3b413b0a6d97f15d18f496748e527efb56 (commit)
      from  35a806b05be9bc41df224755436b03d8b9072763 (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 a575a4b2461cd2092842c059e50931902f97cde2
Merge: 35a806b05b 55cb7d3b41
Author: Darafei Praliaskouski <komzpa at gmail.com>
Date:   Mon Jul 27 15:38:29 2026 -0700

    Merge pull request 'ci: disable stable-3.5 test cluster durability' (!571) from Komzpa/postgis:ci/stable35-test-durability-20260728 into stable-3.5
    
    Reviewed-on: https://gitea.osgeo.org/postgis/postgis/pulls/571


commit 55cb7d3b413b0a6d97f15d18f496748e527efb56
Author: Darafei Praliaskouski <me at komzpa.net>
Date:   Tue Jul 28 02:24:27 2026 +0400

    ci: disable test cluster durability on stable-3.5

diff --git a/.woodpecker/regress.yml b/.woodpecker/regress.yml
index 91446f132b..34420d4aed 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 POSTGIS_REGRESS_DB_OWNER=postgis_reg_unprivileged_user
     - export RUNTESTFLAGS="-v
       --after-create-db-script $${CI_WORKSPACE}/regress/hooks/configure-pgextwlist.sql
diff --git a/ci/dronie/postgis_regress.sh b/ci/dronie/postgis_regress.sh
index f358c11ac5..147acef8ab 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