ci: make sure we fail the build and pass on the non zero exit code
authorStefan Schmidt <stefan@osg.samsung.com>
Thu, 8 Feb 2018 09:45:24 +0000 (10:45 +0100)
committerWonki Kim <wonki_.kim@samsung.com>
Thu, 5 Apr 2018 18:05:30 +0000 (03:05 +0900)
So far we just kept going on when one of the make targets failed with
the next one.

.ci/ci-linux-build.sh
.ci/ci-osx-build.sh

index a48d078..2fc4033 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+set -e
+
 PARALLEL_JOBS=10
 
 CI_BUILD_TYPE=$1
index bc2a056..be1d670 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+set -e
+
 COPTS="--with-crypto=none --disable-pulseaudio --disable-cxx-bindings"
 PARALLEL_JOBS=10