From 7f49b21c49ea4659e2d79dda954640b84edd53fc Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Sun, 8 Sep 2024 07:06:39 -0400 Subject: [PATCH] CI: add tools for schema-validation to EndeavourOS build --- ci/deps-endeavouros.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ci/deps-endeavouros.sh b/ci/deps-endeavouros.sh index 58d1f5f96..94956ae34 100755 --- a/ci/deps-endeavouros.sh +++ b/ci/deps-endeavouros.sh @@ -5,7 +5,9 @@ # There is no docker image for EndeavoudOS, and the live ISO # for Cassini Nova is KF5 / Qt5 based, but we can build there. # It even has most of the build-deps already installed. -pacman -Syu --noconfirm git cmake ninja jq -pacman -S --noconfirm gcc yaml-cpp icu -pacman -S --noconfirm extra-cmake-modules +pacman -Syu --noconfirm jq +pacman -S --noconfirm git cmake ninja jq || exit 1 +pacman -S --noconfirm gcc yaml-cpp icu || exit 1 +pacman -S --noconfirm extra-cmake-modules || exit 1 +pacman -S --noconfirm python-jsonschema || exit 1