From f1d05153b943b6c46192323ead096d5ca177f99e Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Fri, 20 Jan 2023 14:20:25 +0000 Subject: ci-install.sh: Roll back to an older version of ninja on EOL Debian 10 Signed-off-by: Simon McVittie --- tools/ci-install.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/ci-install.sh b/tools/ci-install.sh index ea3a24e..ca678ed 100755 --- a/tools/ci-install.sh +++ b/tools/ci-install.sh @@ -127,10 +127,12 @@ case "$ci_distro" in case "$ci_suite" in (buster|focal) + ninja=ninja==1.10.2.4 ;; (*) $sudo apt-get -qq -y install meson + ninja=ninja have_system_meson=true ;; esac @@ -162,9 +164,9 @@ esac if [ -n "$have_system_meson" ]; then : elif [ -n "${dbus_ci_system_python-}" ]; then - "$dbus_ci_system_python" -m pip install --user meson ninja + "$dbus_ci_system_python" -m pip install --user meson $ninja else - pip install meson ninja + pip install meson $ninja fi # vim:set sw=4 sts=4 et: -- cgit v1.2.1