From 24163f40d3b4c7790c843e99f85143e551201608 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Mon, 22 Aug 2022 17:40:09 +0100 Subject: [PATCH] ci: remove system meson before installing the pip one Reviewed-by: Simon Ser --- .gitlab-ci/debian-install.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci/debian-install.sh b/.gitlab-ci/debian-install.sh index ab901360..d50dc613 100644 --- a/.gitlab-ci/debian-install.sh +++ b/.gitlab-ci/debian-install.sh @@ -26,14 +26,18 @@ EOF apt-get dist-upgrade -y +EPHEMERAL=" + meson \ + " + apt-get install -y --no-remove \ + $EPHEMERAL \ build-essential \ docbook-xsl \ libatomic-ops-dev \ libcairo2-dev \ libcunit1-dev \ libpciaccess-dev \ - meson \ ninja-build \ pkg-config \ python3 \ @@ -61,6 +65,7 @@ for arch in ${CROSS_ARCHITECTURES[@]}; do fi done +apt-get purge -y $EPHEMERAL # Test that the oldest Meson version we claim to support is still supported pip3 install meson==0.46