From 7a9396a0a74b2df3b6d980011a0055369bfc6001 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= Date: Wed, 20 Mar 2024 17:10:51 +0000 Subject: ci: ensure python3 binary is always present MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit OpenSUSE Leap 15.5 has dropped the 'python3' binary from the python311-base RPM. Create a compat symlink if it doesn't already exist. Signed-off-by: Daniel P. Berrangé --- ci/gitlab/all_mappings_prep_env/opensuse-prep.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/gitlab/all_mappings_prep_env/opensuse-prep.sh b/ci/gitlab/all_mappings_prep_env/opensuse-prep.sh index 878e625..4854179 100755 --- a/ci/gitlab/all_mappings_prep_env/opensuse-prep.sh +++ b/ci/gitlab/all_mappings_prep_env/opensuse-prep.sh @@ -5,3 +5,4 @@ zypper install -y \ perl-App-cpanminus \ python311-base \ python311-pip +test -f /usr/bin/python3 || ln -s /usr/bin/python3.11 /usr/bin/python3 -- cgit v1.1