[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0-601-ga8c777aed
git at osgeo.org
git at osgeo.org
Thu Feb 24 03:03:47 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 a8c777aede568c65dd147420c6622fdc9aa3c411 (commit)
from 25fb3c42854d554502c5292086ff5f65cee897c3 (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 a8c777aede568c65dd147420c6622fdc9aa3c411
Author: Sandro Santilli <strk at kbt.io>
Date: Thu Feb 24 12:01:43 2022 +0100
Stop bessies on first error
diff --git a/ci/bessie/postgis_regress.sh b/ci/bessie/postgis_regress.sh
index 020fe565a..425fe868f 100644
--- a/ci/bessie/postgis_regress.sh
+++ b/ci/bessie/postgis_regress.sh
@@ -1,4 +1,8 @@
-#BRANCH is passed in via jenkins which is set via svn hook
+#!/usr/bin/env bash
+
+set -e
+
+#BRANCH is passed in via jenkins which is set via webhook hook
export PATH=${PATH}:/usr/local:/usr/local/lib:/usr/local/bin
sh autogen.sh
./configure --with-projdir=/usr/local --with-libiconv=/usr/local --without-interrupt-tests
diff --git a/ci/bessie32/postgis_regress.sh b/ci/bessie32/postgis_regress.sh
index 10c838ea9..c373611e5 100644
--- a/ci/bessie32/postgis_regress.sh
+++ b/ci/bessie32/postgis_regress.sh
@@ -1,3 +1,7 @@
+#!/usr/bin/env bash
+
+set -e
+
#export PATH=${PATH}:/usr/local:/usr/local/lib:/usr/local/bin
sh autogen.sh
CC=gcc8 \
-----------------------------------------------------------------------
Summary of changes:
ci/bessie/postgis_regress.sh | 6 +++++-
ci/bessie32/postgis_regress.sh | 4 ++++
2 files changed, 9 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list