From a6069abe0288371f67fa5dffa81e4ec8b6bcf761 Mon Sep 17 00:00:00 2001 From: David Marchand Date: Thu, 8 Aug 2019 14:22:17 +0200 Subject: [PATCH] ci: exit setup on any error -e is preferrable so that we can catch errors in the middle of this script. An example is this Travis job [1] that should have errored at the meson install step rather than go to the build step. Adding debug mode as it can help post-mortem. 1: https://travis-ci.com/DPDK/dpdk/jobs/223511683 Signed-off-by: David Marchand Acked-by: Michael Santana Acked-by: Aaron Conole --- .ci/linux-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/linux-setup.sh b/.ci/linux-setup.sh index a40e62eaa0..dfb9d4a206 100755 --- a/.ci/linux-setup.sh +++ b/.ci/linux-setup.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/sh -xe # need to install as 'root' since some of the unit tests won't run without it sudo python3 -m pip install --upgrade meson -- 2.20.1