From 4c52663e4a3c2ee5dd1e41f8a14ee0d9fa96929e Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Thu, 29 Aug 2024 18:49:26 +0100 Subject: [PATCH] ci/va: Make build-va-tools safe for set -u Signed-off-by: Daniel Stone Part-of: --- .gitlab-ci/container/build-va-tools.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci/container/build-va-tools.sh b/.gitlab-ci/container/build-va-tools.sh index 5d28b47f984..3090f233204 100644 --- a/.gitlab-ci/container/build-va-tools.sh +++ b/.gitlab-ci/container/build-va-tools.sh @@ -4,7 +4,7 @@ # .gitlab-ci/image-tags.yml tags: # KERNEL_ROOTFS_TAG -set -ex +set -uex git config --global user.email "mesa@example.com" git config --global user.name "Mesa CI" @@ -19,7 +19,7 @@ pushd /va-utils # Too old libva in Debian 11. TODO: when this PR gets in, refer to the patch. curl -L https://github.com/intel/libva-utils/pull/329.patch | git am -meson setup build -D tests=true -Dprefix=/va $EXTRA_MESON_ARGS +meson setup build -D tests=true -Dprefix=/va ${EXTRA_MESON_ARGS:-} meson install -C build popd rm -rf /va-utils