[SCM] PostGIS branch master updated. 3.7.0beta2-88-g94533b3fb

git at osgeo.org git at osgeo.org
Fri Aug 21 01:19:23 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, master has been updated
       via  94533b3fb459c31b62937068c6e4b3ca4bc3ec3b (commit)
       via  961da26a061a28cfa962b51f5dd6aac822a964b9 (commit)
      from  bc5e893d1a065c6456f572984007006116155727 (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 94533b3fb459c31b62937068c6e4b3ca4bc3ec3b
Merge: bc5e893d1 961da26a0
Author: Darafei Praliaskouski <komzpa at gmail.com>
Date:   Fri Aug 21 01:19:21 2026 -0700

    Merge pull request 'ci: decouple localized HTML workflow steps' (!750) from Komzpa/postgis:fix/docs-ja-pruned-dependency-20260821 into master
    
    Localized HTML jobs are path-pruned independently, so serial dependencies between locales can reference a step Woodpecker removed from the workflow graph. Each locale now depends only on its own XML check.
    
    Validated: YAML parsing, no sibling html-* dependency remains, and git diff --check.
    
    Reviewed-on: https://gitea.osgeo.org/postgis/postgis/pulls/750


commit 961da26a061a28cfa962b51f5dd6aac822a964b9
Author: Darafei Praliaskouski <me at komzpa.net>
Date:   Fri Aug 21 11:33:08 2026 +0400

    ci: decouple localized HTML workflow steps

diff --git a/.woodpecker/docs.yml b/.woodpecker/docs.yml
index 51ee6147c..4caca002b 100644
--- a/.woodpecker/docs.yml
+++ b/.woodpecker/docs.yml
@@ -300,7 +300,7 @@ steps:
     pull: true
     commands:
       - make -C build-docs/doc/po/pt_BR local-html
-    depends_on: [ check-xml-pt_BR, html-it_IT ]
+    depends_on: [ check-xml-pt_BR ]
     when:
       - path: *when_localized
 
@@ -309,7 +309,7 @@ steps:
     pull: true
     commands:
       - make -C build-docs/doc/po/fr local-html
-    depends_on: [ check-xml-fr, html-pt_BR ]
+    depends_on: [ check-xml-fr ]
     when:
       - path: *when_localized
 
@@ -318,7 +318,7 @@ steps:
     pull: true
     commands:
       - make -C build-docs/doc/po/es local-html
-    depends_on: [ check-xml-es, html-fr ]
+    depends_on: [ check-xml-es ]
     when:
       - path: *when_localized
 
@@ -327,7 +327,7 @@ steps:
     pull: true
     commands:
       - make -C build-docs/doc/po/pl local-html
-    depends_on: [ check-xml-pl, html-es ]
+    depends_on: [ check-xml-pl ]
     when:
       - path: *when_localized
 
@@ -336,7 +336,7 @@ steps:
     pull: true
     commands:
       - make -C build-docs/doc/po/ka local-html
-    depends_on: [ check-xml-ka, html-pl ]
+    depends_on: [ check-xml-ka ]
     when:
       - path: *when_localized
 
@@ -345,7 +345,7 @@ steps:
     pull: true
     commands:
       - make -C build-docs/doc/po/ko_KR local-html
-    depends_on: [ check-xml-ko_KR, html-ka ]
+    depends_on: [ check-xml-ko_KR ]
     when:
       - path: *when_localized
 
@@ -354,7 +354,7 @@ steps:
     pull: true
     commands:
       - make -C build-docs/doc/po/da local-html
-    depends_on: [ check-xml-da, html-ko_KR ]
+    depends_on: [ check-xml-da ]
     when:
       - path: *when_localized
 
@@ -363,7 +363,7 @@ steps:
     pull: true
     commands:
       - make -C build-docs/doc/po/de local-html
-    depends_on: [ check-xml-de, html-da ]
+    depends_on: [ check-xml-de ]
     when:
       - path: *when_localized
 
@@ -372,7 +372,7 @@ steps:
     pull: true
     commands:
       - make -C build-docs/doc/po/ja local-html
-    depends_on: [ check-xml-ja, html-de ]
+    depends_on: [ check-xml-ja ]
     when:
       - path: *when_localized
 
@@ -381,7 +381,7 @@ steps:
     pull: true
     commands:
       - make -C build-docs/doc/po/ru local-html
-    depends_on: [ check-xml-ru, html-ja ]
+    depends_on: [ check-xml-ru ]
     when:
       - path: *when_localized
 
@@ -390,7 +390,7 @@ steps:
     pull: true
     commands:
       - make -C build-docs/doc/po/zh_Hans local-html
-    depends_on: [ check-xml-zh_Hans, html-ru ]
+    depends_on: [ check-xml-zh_Hans ]
     when:
       - path: *when_localized
 
@@ -399,7 +399,7 @@ steps:
     pull: true
     commands:
       - make -C build-docs/doc/po/ro local-html
-    depends_on: [ check-xml-ro, html-zh_Hans ]
+    depends_on: [ check-xml-ro ]
     when:
       - path: *when_localized
 
@@ -408,7 +408,7 @@ steps:
     pull: true
     commands:
       - make -C build-docs/doc/po/sv local-html
-    depends_on: [ check-xml-sv, html-ro ]
+    depends_on: [ check-xml-sv ]
     when:
       - path: *when_localized
 
@@ -417,7 +417,7 @@ steps:
     pull: true
     commands:
       - make -C build-docs/doc/po/uk local-html
-    depends_on: [ check-xml-uk, html-sv ]
+    depends_on: [ check-xml-uk ]
     when:
       - path: *when_localized
 
@@ -426,7 +426,7 @@ steps:
     pull: true
     commands:
       - make -C build-docs/doc/po/be local-html
-    depends_on: [ check-xml-be, html-uk ]
+    depends_on: [ check-xml-be ]
     when:
       - path: *when_localized
 

-----------------------------------------------------------------------

Summary of changes:
 .woodpecker/docs.yml | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list