[postgis-tickets] [SCM] PostGIS branch master updated. 3.4.0rc1-300-g906278aec
git at osgeo.org
git at osgeo.org
Wed Sep 6 01:55:24 PDT 2023
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 906278aec76dc7bcfb9bed1298cad2d54dd958a3 (commit)
from 2f4a4c9d8b7faedb3fe4715b5add8b80770565de (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 906278aec76dc7bcfb9bed1298cad2d54dd958a3
Author: Sandro Santilli <strk at kbt.io>
Date: Tue Sep 5 16:40:20 2023 +0200
[woodie] Share clone step for regress workflow
diff --git a/.woodpecker/regress.yml b/.woodpecker/regress.yml
index a430aaca5..aa8081b43 100644
--- a/.woodpecker/regress.yml
+++ b/.woodpecker/regress.yml
@@ -1,13 +1,27 @@
-matrix:
- PG_VERSION:
- - 15
- - 12
+variables:
+ test-image: &test-image docker.osgeo.org/postgis/build-test:trisquel3
+
+clone:
+ clone:
+ image: woodpeckerci/plugin-git
+ depth: 50
steps:
- build:
- group: build
- image: docker.osgeo.org/postgis/build-test:trisquel3
+
+ autogen:
+ image: *test-image
pull: true
commands:
- - sh autogen.sh
- - PGVER=${PG_VERSION} sh ci/dronie/postgis_regress.sh
+ - ./autogen.sh
+
+ regress-pg12:
+ image: *test-image
+ group: build
+ commands:
+ - PGVER=12 sh ci/dronie/postgis_regress.sh
+
+ regress-pg15:
+ image: *test-image
+ group: build
+ commands:
+ - PGVER=15 sh ci/dronie/postgis_regress.sh
-----------------------------------------------------------------------
Summary of changes:
.woodpecker/regress.yml | 32 +++++++++++++++++++++++---------
1 file changed, 23 insertions(+), 9 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list