]> granicus.if.org Git - postgis/commitdiff
Try to get berrie to return fail code if regress fails
authorRegina Obe <lr@pcorp.us>
Fri, 9 Aug 2019 21:55:25 +0000 (21:55 +0000)
committerRegina Obe <lr@pcorp.us>
Fri, 9 Aug 2019 21:55:25 +0000 (21:55 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@17679 b70326c6-7e19-0410-871a-916f4a2858ee

ci/berrie/postgis_regress.sh

index 47dfe8a77293de038d433a309e225ecbba2147f7..9ee1d5175b130a9ae60d945fa709e6f07dd124f6 100644 (file)
@@ -1,3 +1,4 @@
+#!/bin/bash
 #bessie is a 32-bit Rasberry Pi managed by Bruce Rindahl
 ## BRANCH is passed in via jenkins which is set via gitea web hook
 #export BRANCH=618a67b1d6fc223dd5a4c0b02c824939f21dbd65
@@ -20,11 +21,12 @@ sh autogen.sh
 ./configure --with-pgconfig=${PGPATH}/bin/pg_config
 #make clean
 make
-
+export err=0
 make check RUNTESTFLAGS="-v"
 make install
-make check RUNTESTFLAGS="-v --extension"
+make check RUNTESTFLAGS="-v --extension" || $err=1
 
 if [ -d $PGDATA/postmaster.pid ] ; then
        $PGCTL stop -D $PGDATA -s -m fast
-fi
\ No newline at end of file
+fi
+exit $err
\ No newline at end of file