aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rwxr-xr-xscripts/ci/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci/build.sh b/scripts/ci/build.sh
index 2dd14e5da4..a73012e4e4 100755
--- a/scripts/ci/build.sh
+++ b/scripts/ci/build.sh
@@ -157,7 +157,7 @@ function bazel_build() {
${BUILD_SCRIPT_PATH} ${BAZEL_COMPILE_TARGET:-all} || retCode=$?
# Exit for failure except for test failures (exit code 3).
- if (( $retCode != 3 )); then
+ if (( $retCode != 0 && $retCode != 3 )); then
exit $retCode
fi