From 830ae193a421b9eb52b07abab2e1338a38324417 Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Thu, 17 Oct 2024 11:53:52 +0200 Subject: [PATCH] allow pip to break system packages when installin pykickstart Ubuntu 24.04 by default protects system packages, which is good, but in CI we just don't care enough to create a venv. --- .github/workflows/foreman.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/foreman.yml b/.github/workflows/foreman.yml index 361cb1cb317..4c126fcab47 100644 --- a/.github/workflows/foreman.yml +++ b/.github/workflows/foreman.yml @@ -115,7 +115,7 @@ jobs: if: contains(matrix.task, 'compile') - name: Install external test dependencies run: | - pip3 install pykickstart + pip3 install --break-system-packages pykickstart sudo apt-get -qq -y install --no-install-recommends grub-common if: contains(matrix.task, 'external') - name: Prepare test env