From 01397b213d7a451a2e773543e8ea3e3a76c4b00c 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 034a666f7..0896e0f89 100644 --- a/ci/images_template.yml +++ b/ci/images_template.yml @@ -1,2 +1,2 @@ variables: - GST_RS_IMG_TAG: '2020-07-28.0' + GST_RS_IMG_TAG: '2020-07-28.1' diff --git a/ci/install-gst.sh b/ci/install-gst.sh index 22f9810ae..5741b939a 100755 --- a/ci/install-gst.sh +++ b/ci/install-gst.sh @@ -1,3 +1,5 @@ +set -e + pip3 install meson==0.55.0 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 41f348515..c2e84fde2 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.22.1