From 892da81041474994fef5ee6e57dd4d3e6f968ee0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= Date: Wed, 18 Dec 2024 15:12:38 -0500 Subject: [PATCH] github: Simplify build action MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber --- .github/actions/build/action.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 8f0879d7..64d7f20d 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -16,12 +16,7 @@ runs: sudo apt-get update -qq sudo apt-get install -qq ${{ inputs.compiler }} sudo apt-get install -qq lib${{ inputs.fuse }}-dev - sudo apt-get install -qq python3 python3-pip python3-setuptools pkg-config uuid-runtime - if [ "${{ inputs.os }}" = "ubuntu-22.04" ]; then - sudo pip3 install meson==0.55.1 ninja - else - sudo pip3 install meson==0.55.1 ninja --break-system-packages - fi + sudo apt-get install -qq pkg-config uuid-runtime - name: Compiler version shell: bash