[SCM] PostGIS branch master updated. 3.6.0rc2-66-gecfb41a80

git at osgeo.org git at osgeo.org
Tue Sep 30 06:22:43 PDT 2025


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  ecfb41a80c3c01e67a76ff264aba9a89bb0a03c3 (commit)
      from  b1d3d414588470fbadbb19d97b9fa4f5166b56fc (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 ecfb41a80c3c01e67a76ff264aba9a89bb0a03c3
Author: Regina Obe <lr at pcorp.us>
Date:   Tue Sep 30 09:21:05 2025 -0400

    CI reorg
    
     - Remove dronie
     - Remove PG12 testing
     - Add PG13, PG14, PG15
     - But only test upgrade check on 13 and 17 to not make times ridiculous

diff --git a/.drone-1.0.yml b/.drone-1.0.yml
deleted file mode 100644
index 1d26bed26..000000000
--- a/.drone-1.0.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-# This is for the drone 1.0 agent
-# https://docs.drone.io/user-guide/pipeline/steps/
-# https://dronie.osgeo.org #1.0 server
-
-# See https://git.osgeo.org/gitea/postgis/postgis-docker
-# todo: add docker images from https://hub.docker.com/r/postgis/postgis-build-env/tags/
-test-image: &test-image docker.osgeo.org/postgis/build-test:trisquel11
-clone: &clone
-    image: plugins/git
-    depth: 50
-    recursive: false
-
-kind: pipeline
-name: build
-clone: *clone
-steps:
-
-  - name: autogen
-    image: *test-image
-    pull: always
-    commands:
-      - ./autogen.sh
-    depends_on: [ clone ]
-
-  - name: build-13
-    image: *test-image
-    pull: never
-    commands:
-      - PGVER=13 sh ci/dronie/postgis_regress.sh
-    depends_on: [ autogen ]
-
-  - name: build-14
-    image: *test-image
-    pull: never
-    commands:
-      - PGVER=14 sh ci/dronie/postgis_regress.sh
-    depends_on: [ autogen ]
-
diff --git a/.woodpecker/regress.yml b/.woodpecker/regress.yml
index cbf30231d..87c1b47f7 100644
--- a/.woodpecker/regress.yml
+++ b/.woodpecker/regress.yml
@@ -59,11 +59,29 @@ steps:
     commands:
       - ./autogen.sh
 
-  build-pg12:
+  build-pg13:
     image: *test-image
     depends_on: autogen
     environment:
-      PGVER: 12
+      PGVER: 13
+    commands:
+      - <<: *steps-env
+      - <<: *steps-pg-build
+
+  build-pg14:
+    image: *test-image
+    depends_on: autogen
+    environment:
+      PGVER: 14
+    commands:
+      - <<: *steps-env
+      - <<: *steps-pg-build
+
+  build-pg15:
+    image: *test-image
+    depends_on: autogen
+    environment:
+      PGVER: 15
     commands:
       - <<: *steps-env
       - <<: *steps-pg-build
@@ -77,11 +95,31 @@ steps:
       - <<: *steps-env
       - <<: *steps-pg-build
 
-  check-pg12:
+  check-pg13:
     image: *test-image
-    depends_on: build-pg12
+    depends_on: build-pg13
     environment:
-      PGVER: 12
+      PGVER: 13
+    commands:
+      - <<: *steps-env
+      - <<: *steps-start-postgresql
+      - <<: *steps-pg-test-preinstall
+
+  check-pg14:
+    image: *test-image
+    depends_on: build-pg14
+    environment:
+      PGVER: 14
+    commands:
+      - <<: *steps-env
+      - <<: *steps-start-postgresql
+      - <<: *steps-pg-test-preinstall
+
+  check-pg15:
+    image: *test-image
+    depends_on: build-pg15
+    environment:
+      PGVER: 15
     commands:
       - <<: *steps-env
       - <<: *steps-start-postgresql
@@ -97,11 +135,33 @@ steps:
       - <<: *steps-start-postgresql
       - <<: *steps-pg-test-preinstall
 
-  installcheck-pg12:
+  installcheck-pg13:
     image: *test-image
-    depends_on: build-pg12
+    depends_on: build-pg13
     environment:
-      PGVER: 12
+      PGVER: 13
+    commands:
+      - <<: *steps-env
+      - <<: *steps-start-postgresql
+      - <<: *steps-pg-install
+      - <<: *steps-pg-test-install
+
+  installcheck-pg14:
+    image: *test-image
+    depends_on: build-pg14
+    environment:
+      PGVER: 14
+    commands:
+      - <<: *steps-env
+      - <<: *steps-start-postgresql
+      - <<: *steps-pg-install
+      - <<: *steps-pg-test-install
+
+  installcheck-pg15:
+    image: *test-image
+    depends_on: build-pg15
+    environment:
+      PGVER: 15
     commands:
       - <<: *steps-env
       - <<: *steps-start-postgresql
@@ -119,11 +179,11 @@ steps:
       - <<: *steps-pg-install
       - <<: *steps-pg-test-install
 
-  upgradecheck-pg12:
+  upgradecheck-pg13:
     image: *test-image
-    depends_on: installcheck-pg12
+    depends_on: installcheck-pg13
     environment:
-      PGVER: 12
+      PGVER: 13
     commands:
       - <<: *steps-env
       - <<: *steps-start-postgresql

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

Summary of changes:
 .drone-1.0.yml          | 38 -----------------------
 .woodpecker/regress.yml | 82 ++++++++++++++++++++++++++++++++++++++++++-------
 2 files changed, 71 insertions(+), 49 deletions(-)
 delete mode 100644 .drone-1.0.yml


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list