[SCM] PostGIS branch stable-3.3 updated. 3.3.10-83-ge8ac394a1
git at osgeo.org
git at osgeo.org
Thu Jul 23 04:28:00 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 e8ac394a16b235bbf350c015b74d51562c08b8b4 (commit)
from ea57a49a3f6d1f2d5cf1144dc145b3e2581ade4f (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 e8ac394a16b235bbf350c015b74d51562c08b8b4
Author: Darafei Praliaskouski <komzpa at gmail.com>
Date: Thu Jul 23 04:27:59 2026 -0700
regress: normalize staged install permissions (!491)
Summary:
- normalize final staged regression install permissions after staged-install rewrites
- keep the staged extension tree readable and traversable to the PostgreSQL server OS user
- address the stable-3.3 Woodpecker PG15 upgradecheck loader failure under restrictive file modes
Woodpecker stable-3.3 pipeline `5417` failed in `upgradecheck-pg15` while loading the staged `postgis-3.3.so` from `regress/00-regress-install`: `Permission denied`.
The staged install is created by build commands but later loaded by the PostgreSQL server process, so it must not inherit private builder permissions. This patch applies `chmod -R a+rX` to the final staged install tree after the `$libdir` rewrite, keeping shared libraries and path directories readable and traversable for the server-side loader.
Failure:
- https://woodie.osgeo.org/repos/30/pipeline/5417
Validation:
- `git diff --check HEAD~1..HEAD`
- `sh -n utils/check_all_upgrades.sh`
- `perl -c regress/run_test.pl`
---------
Co-authored-by: Darafei Praliaskouski <me at komzpa.net>
Reviewed-on: https://gitea.osgeo.org/postgis/postgis/pulls/491
diff --git a/regress/Makefile.in b/regress/Makefile.in
index 7aad562f5..0fdb6fb27 100644
--- a/regress/Makefile.in
+++ b/regress/Makefile.in
@@ -92,6 +92,9 @@ staged-install:
$(MAKE) staged-install-topology
$(MAKE) staged-install-sfcgal
$(PERL) -pi -e 's,\$$libdir,$(REGRESS_INSTALLDIR)/lib,g' $(REGRESS_INSTALLDIR)/share/contrib/postgis/*.sql
+ # Upgrade tests may load the staged extension as the postgres OS user,
+ # so the staged tree must remain traversable regardless of the builder umask.
+ chmod -R a+rX $(REGRESS_INSTALLDIR)
garden: staged-install
createdb postgis_garden
-----------------------------------------------------------------------
Summary of changes:
regress/Makefile.in | 3 +++
1 file changed, 3 insertions(+)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list