From 1dd728a3d89a6307f1ff8cb2cca422d4b10ee385 Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Thu, 29 Aug 2024 18:49:26 +0100 Subject: [PATCH] ci/skqp: Make build-skqp safe for set -u Signed-off-by: Daniel Stone Part-of: --- .gitlab-ci/container/build-skqp.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci/container/build-skqp.sh b/.gitlab-ci/container/build-skqp.sh index f5e435c1141..1c9dc6b2443 100755 --- a/.gitlab-ci/container/build-skqp.sh +++ b/.gitlab-ci/container/build-skqp.sh @@ -8,6 +8,8 @@ # .gitlab-ci/image-tags.yml tags: # KERNEL_ROOTFS_TAG +set -uex + SKQP_BRANCH=android-cts-12.1_r5 # hack for skqp see the clang @@ -38,8 +40,6 @@ download_skia_source() { git clone --branch "${SKQP_BRANCH}" --depth 1 "${SKQP_REPO}" "${SKIA_DIR}" } -set -ex - SCRIPT_DIR=$(realpath "$(dirname "$0")") SKQP_PATCH_DIR="${SCRIPT_DIR}/patches" BASE_ARGS_GN_FILE="${SCRIPT_DIR}/build-skqp_base.gn"