7593: Add sdk/cwl to package building.
[arvados.git] / jenkins / run-test-packages.sh
index c4f5bec116315925425f18e21f673f4530bb12e2..baca7b7b142aa745990a1a42a5d8ca590db23b2e 100755 (executable)
@@ -5,6 +5,19 @@ if test -z "$WORKSPACE" ; then
     exit 1
 fi
 
-for pkg in test-packages-*.sh ; do
-    $pkg --run-test
+FAIL=0
+
+ERRORS=""
+
+for pkg in ./test-packages-*.sh ; do
+    echo
+    echo "== Running $pkg =="
+    echo
+    if ! $pkg --run-test ; then
+        FAIL=1
+        ERRORS="$ERRORS\n$pkg has install errors"
+    fi
 done
+
+echo $ERRORS
+exit $FAIL