From b74872250506215ee074e4d68ef03b97a4fea64c Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Thu, 8 Feb 2018 10:45:24 +0100 Subject: [PATCH] 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. --- .ci/ci-linux-build.sh | 2 ++ .ci/ci-osx-build.sh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.ci/ci-linux-build.sh b/.ci/ci-linux-build.sh index a48d078..2fc4033 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 bc2a056..be1d670 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 -- 2.7.4