[SCM] PostGIS branch master updated. 3.4.0rc1-1026-g2ddb52eab
git at osgeo.org
git at osgeo.org
Thu Mar 14 10:39:07 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 2ddb52eab32b230db3424b79f5231813e73358ab (commit)
via 16a6f896617ab6ce2445fee813c8a013a8db2a63 (commit)
from 57e3f477860748d62d88b465b55e95d0e9091706 (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 2ddb52eab32b230db3424b79f5231813e73358ab
Author: Sandro Santilli <strk at kbt.io>
Date: Thu Mar 14 18:34:36 2024 +0100
[woodie] Further tweak dependencies
- chunked-html does not strictly requires building images
- check-xml is needed by all steps using the xml
diff --git a/.woodpecker/docs.yml b/.woodpecker/docs.yml
index a91288f29..eed1c038b 100644
--- a/.woodpecker/docs.yml
+++ b/.woodpecker/docs.yml
@@ -51,7 +51,7 @@ steps:
build-html:
image: *test_image
pull: true
- depends_on: prepare
+ depends_on: check-xml
commands:
- make -C build-docs/doc html
when:
@@ -59,7 +59,7 @@ steps:
build-cheatsheets:
image: *test_image
pull: true
- depends_on: prepare
+ depends_on: check-xml
commands:
- make -C build-docs/doc/ cheatsheets
when:
@@ -67,7 +67,7 @@ steps:
build-chunked-html:
image: *test_image
pull: true
- depends_on: build-images
+ depends_on: check-xml
commands:
- make -C build-docs/doc html
when:
@@ -75,7 +75,7 @@ steps:
build-pdf:
image: *test_image
pull: true
- depends_on: build-images
+ depends_on: [ build-images, check-xml ]
commands:
- make -C build-docs/doc/ pdf
when:
diff --git a/.woodpecker/update-docs-localized.sh b/.woodpecker/update-docs-localized.sh
index 34cb7bb90..a481d99cc 100755
--- a/.woodpecker/update-docs-localized.sh
+++ b/.woodpecker/update-docs-localized.sh
@@ -16,11 +16,14 @@ do
for lang in ${SUPPORTED_LANGUAGES};
do
case ${target} in
- check-xml|html|cheatsheets)
+ check-xml)
depends_on=prepare
;;
+ html|cheatsheets)
+ depends_on=check-xml
+ ;;
pdf)
- depends_on=build-images
+ depends_on=[ build-images, check-xml ]
;;
check-cheatsheets)
depends_on=cheatsheets-${lang}
commit 16a6f896617ab6ce2445fee813c8a013a8db2a63
Author: Sandro Santilli <strk at kbt.io>
Date: Thu Mar 14 18:34:06 2024 +0100
[woodie] Fix linter
Cannot use "clone" more than once, apparently:
https://woodie.osgeo.org/repos/30/pipeline/1953/errors
diff --git a/.woodpecker/regress.yml b/.woodpecker/regress.yml
index c54c6bae5..2765002d5 100644
--- a/.woodpecker/regress.yml
+++ b/.woodpecker/regress.yml
@@ -43,7 +43,7 @@ variables:
- egrep '(PASS|FAIL|SKIP|INFO|ERROR)' check.log
clone:
- clone:
+ git:
image: woodpeckerci/plugin-git
depth: 50
-----------------------------------------------------------------------
Summary of changes:
.woodpecker/docs.yml | 8 ++++----
.woodpecker/regress.yml | 2 +-
.woodpecker/update-docs-localized.sh | 7 +++++--
3 files changed, 10 insertions(+), 7 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list