[SCM] PostGIS branch master updated. 3.4.0rc1-1242-g4f5c2b2d5

git at osgeo.org git at osgeo.org
Mon Jul 1 13:52:49 PDT 2024


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  4f5c2b2d58482d51eadb087d58389610a17d79a6 (commit)
      from  bc5a580f99eb24df5b15833f668c47ddb63c248e (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 4f5c2b2d58482d51eadb087d58389610a17d79a6
Author: Sandro Santilli <strk at kbt.io>
Date:   Mon Jul 1 22:52:33 2024 +0200

    Check languages are checked by woodie too

diff --git a/utils/check_lang_enabled.sh b/utils/check_lang_enabled.sh
index c4c3c9236..4d6afdd0e 100755
--- a/utils/check_lang_enabled.sh
+++ b/utils/check_lang_enabled.sh
@@ -46,12 +46,20 @@ do
     continue
   }
 
+  # Check that the language dir is enabled in doc/Makefile.in
   echo "${ENABLED_TRANSLATIONS}" | grep -qw "${LANG}" || {
     echo "FAIL: ${LANG} is not enabled in ${RD}/doc/Makefile.in (translations)"
     fail=$((fail+1))
     continue
   }
 
+  # Check that the language check is enabled for woodie
+  grep -qw "${LANG}" ${RD}/.woodpecker/docs.yml || {
+    echo "FAIL: ${LANG} is not enabled in ${RD}/.woodpecker/docs.yml"
+    fail=$((fail+1))
+    continue
+  }
+
   echo "PASS: ${LANG} is correctly enabled"
 
 done

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

Summary of changes:
 utils/check_lang_enabled.sh | 8 ++++++++
 1 file changed, 8 insertions(+)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list