You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2019/12/01 17:42:05 UTC

[isis] branch master updated: ISIS-2188 - adds debug to build-core.sh

This is an automated email from the ASF dual-hosted git repository.

danhaywood pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 0d73d41  ISIS-2188 - adds debug to build-core.sh
0d73d41 is described below

commit 0d73d4196fcbb268f66441fc4624335af850425c
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Sun Dec 1 17:41:50 2019 +0000

    ISIS-2188 - adds debug to build-core.sh
    
    for some clues, hopefully, re: the build issue
---
 scripts/ci/build-core.sh | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/scripts/ci/build-core.sh b/scripts/ci/build-core.sh
index af97a3a..154cd4e 100644
--- a/scripts/ci/build-core.sh
+++ b/scripts/ci/build-core.sh
@@ -1,5 +1,5 @@
 #!/bin/bash
-set -e
+#set -e
 
 SCRIPT_DIR=$( dirname "$0" )
 if [ -z "$PROJECT_ROOT_PATH" ]; then
@@ -40,6 +40,13 @@ mvn -s $SETTINGS_XML \
     $MVN_ADDITIONAL_OPTS \
     $*
 
+if [ $? -ne 0 ]; then
+  find . -name QExcelDemoToDoItem.java -print
+  cat $(find . -name QExcelDemoToDoItem.java -print)
+
+  exit 1
+fi
+
 if [ ! -z "$REVISION" ]; then
   cd $PROJECT_ROOT_PATH/core-parent
   echo "reverting version in isis-parent ..."