[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0-444-g3b8adbe71

git at osgeo.org git at osgeo.org
Tue Feb 1 00:48:39 PST 2022


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  3b8adbe716e4d00c73d6ef69da9307bdd8a2dd81 (commit)
       via  32ff9e820f5442c909e7ec9d224efad92b943ceb (commit)
      from  1fd865f66f091cd449e5d3cab8b3e4205fb5c189 (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 3b8adbe716e4d00c73d6ef69da9307bdd8a2dd81
Author: Sandro Santilli <strk at kbt.io>
Date:   Tue Feb 1 09:48:24 2022 +0100

    [dronie] Also print SKIPs in the upgrade summary print

diff --git a/ci/dronie/postgis_regress.sh b/ci/dronie/postgis_regress.sh
index cd72d13fb..56104fc76 100644
--- a/ci/dronie/postgis_regress.sh
+++ b/ci/dronie/postgis_regress.sh
@@ -49,4 +49,4 @@ mkfifo check.fifo
 tee check.log < check.fifo &
 ${SRCDIR}/utils/check_all_upgrades.sh -s ${CURRENTVERSION}! > check.fifo
 echo "-- Summary of upgrade tests --"
-egrep '(PASS|FAIL)' check.log
+egrep '(PASS|FAIL|SKIP)' check.log

commit 32ff9e820f5442c909e7ec9d224efad92b943ceb
Author: Sandro Santilli <strk at kbt.io>
Date:   Tue Feb 1 01:04:08 2022 +0100

    [dronie] Go back to POSIX shell scripts

diff --git a/.drone-1.0.yml b/.drone-1.0.yml
index 91b3885c8..51da3b5aa 100644
--- a/.drone-1.0.yml
+++ b/.drone-1.0.yml
@@ -26,21 +26,21 @@ steps:
     image: *test-image
     pull: never
     commands:
-      - PGVER=9.6 bash ci/dronie/postgis_regress.sh
+      - PGVER=9.6 sh ci/dronie/postgis_regress.sh
     depends_on: [ autogen ]
 
   - name: build-10
     image: *test-image
     pull: never
     commands:
-      - PGVER=10 bash ci/dronie/postgis_regress.sh
+      - PGVER=10 sh ci/dronie/postgis_regress.sh
     depends_on: [ autogen ]
 
   - name: build-11
     image: *test-image
     pull: never
     commands:
-      - PGVER=11 bash ci/dronie/postgis_regress.sh
+      - PGVER=11 sh ci/dronie/postgis_regress.sh
     depends_on: [ autogen ]
 
   - name: build-docs
diff --git a/ci/dronie/postgis_regress.sh b/ci/dronie/postgis_regress.sh
index 195239abb..cd72d13fb 100644
--- a/ci/dronie/postgis_regress.sh
+++ b/ci/dronie/postgis_regress.sh
@@ -3,9 +3,6 @@
 # Exit on first error
 set -e
 
-# Fail the whole pipeline if any pipeline command fails
-set -o pipefail
-
 service postgresql start $PGVER
 export PGPORT=`grep ^port /etc/postgresql/$PGVER/main/postgresql.conf | awk '{print $3}'`
 export PATH=/usr/lib/postgresql/$PGVER/bin:$PATH
@@ -48,6 +45,8 @@ RUNTESTFLAGS=-v make installcheck
 #-----------------------------------------------
 
 CURRENTVERSION=`grep '^POSTGIS_' ${SRCDIR}/Version.config | cut -d= -f2 | paste -sd '.'`
-${SRCDIR}/utils/check_all_upgrades.sh -s ${CURRENTVERSION}! | tee check.log
+mkfifo check.fifo
+tee check.log < check.fifo &
+${SRCDIR}/utils/check_all_upgrades.sh -s ${CURRENTVERSION}! > check.fifo
 echo "-- Summary of upgrade tests --"
 egrep '(PASS|FAIL)' check.log

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

Summary of changes:
 .drone-1.0.yml               | 6 +++---
 ci/dronie/postgis_regress.sh | 9 ++++-----
 2 files changed, 7 insertions(+), 8 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list