From 0a8c3c924e97186c1d0bef60baf3b679d90ab2ec Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Mon, 5 Feb 2024 18:00:10 +0000 Subject: [PATCH] .gitlab-ci.yml: Always use Python from PPA as distro package is broken Fix the following issue by installing the package from deadsnakes PPA: The following packages have unmet dependencies: idle-python3.10 : Depends: libjs-mathjax but it is not installable libpython3.10-testsuite : Depends: net-tools but it is not installable python3-tk : Depends: blt (>= 2.4z-9) but it is not installable Depends: libtk8.6 (>= 8.6.0) but it is not installable Depends: tk8.6-blt2.5 (>= 2.5.3) but it is not installable E: Unable to correct problems, you have held broken packages. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 42819c3bc..78a83a561 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -117,8 +117,8 @@ Autobranch: export LC_ALL=C venv=$(mktemp -d) python3 -m venv "$venv" && source "$venv/bin/activate" - pip install --upgrade pip - pip install ./tools/lisa-combine-gitlab-mr + $LISA_PYTHON -m pip install --upgrade pip + $LISA_PYTHON -m pip install ./tools/lisa-combine-gitlab-mr function update_branch() { local label=$1 -- GitLab