From f69a2226befde378158d2ded73b3a8b19b975f68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 28 Jul 2020 09:45:11 +0300 Subject: [PATCH] ci: `set -e` in all shell scripts Otherwise errors are silently ignored. --- ci/images_template.yml | 2 +- ci/install-gst.sh | 2 ++ ci/install-rust.sh | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ci/images_template.yml b/ci/images_template.yml index 6f963ffe5..3ffef6383 100644 --- a/ci/images_template.yml +++ b/ci/images_template.yml @@ -1,2 +1,2 @@ variables: - GST_RS_IMG_TAG: '2020-07-05.0' + GST_RS_IMG_TAG: '2020-07-05.0-0.16' diff --git a/ci/install-gst.sh b/ci/install-gst.sh index 493f83484..0c5687b8a 100755 --- a/ci/install-gst.sh +++ b/ci/install-gst.sh @@ -1,3 +1,5 @@ +set -e + pip3 install meson==0.54.3 git clone --depth 1 https://gitlab.freedesktop.org/gstreamer/gst-build.git --branch master diff --git a/ci/install-rust.sh b/ci/install-rust.sh index f4f79682b..53bc93425 100755 --- a/ci/install-rust.sh +++ b/ci/install-rust.sh @@ -1,4 +1,6 @@ source ./ci/env.sh + +set -e export CARGO_HOME='/usr/local/cargo' RUSTUP_VERSION=1.21.1