From a44fa5323f2d89cb6f78003e653054084519a5ae Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Thu, 27 Aug 2020 16:50:30 -0400 Subject: [PATCH] ci: buildkite: exit on errors Whenever we have an error in the script, exit immediately and avoid confusing unrelated messages about disk space and such. Signed-off-by: Anas Nashif --- .buildkite/run.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.buildkite/run.sh b/.buildkite/run.sh index e5a07e463dc..711183565cb 100755 --- a/.buildkite/run.sh +++ b/.buildkite/run.sh @@ -2,6 +2,7 @@ # Copyright (c) 2020 Linaro Limited # # SPDX-License-Identifier: Apache-2.0 +set -e echo "--- run $0"