summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2018-02-08 10:45:24 +0100
committerStefan Schmidt <stefan@osg.samsung.com>2018-02-08 11:45:15 +0100
commit22794846f4da918333d375d21aabbc67e63b78eb (patch)
tree763843ba79752d967a8a22f1fb78bc2d39ea893f
parentb380e63b0769c664c5a00be0879fddab9b0c98a5 (diff)
downloadefl-22794846f4da918333d375d21aabbc67e63b78eb.tar.gz
ci: make sure we fail the build and pass on the non zero exit code
So far we just kept going on when one of the make targets failed with the next one.
-rwxr-xr-x.ci/ci-linux-build.sh2
-rwxr-xr-x.ci/ci-osx-build.sh2
2 files changed, 4 insertions, 0 deletions
diff --git a/.ci/ci-linux-build.sh b/.ci/ci-linux-build.sh
index a48d0788a1..2fc40330c7 100755
--- a/.ci/ci-linux-build.sh
+++ b/.ci/ci-linux-build.sh
@@ -1,5 +1,7 @@
#!/bin/sh
+set -e
+
PARALLEL_JOBS=10
CI_BUILD_TYPE=$1
diff --git a/.ci/ci-osx-build.sh b/.ci/ci-osx-build.sh
index bc2a056829..be1d670595 100755
--- a/.ci/ci-osx-build.sh
+++ b/.ci/ci-osx-build.sh
@@ -1,5 +1,7 @@
#!/bin/sh
+set -e
+
COPTS="--with-crypto=none --disable-pulseaudio --disable-cxx-bindings"
PARALLEL_JOBS=10