From 5c825b6cac3f73e3f38a5d6412f472251a27bc8d Mon Sep 17 00:00:00 2001 From: cochcoder Date: Thu, 27 Feb 2025 14:52:44 -0500 Subject: [PATCH] Try installing meson before the flatpak builder --- .github/workflows/build_all.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index 9373e05ab1..ff6becefa1 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -67,6 +67,12 @@ jobs: matrix: arch: [x86_64, aarch64] fail-fast: false + steps: + - name: Install dependencies + run: | + apt-get update + apt-get install -y python3-pip + pip3 install meson env: date: ver: @@ -83,10 +89,6 @@ jobs: - name: "Remove unneeded stuff to free disk space" run: rm -rf /usr/local/lib/android/* /usr/share/dotnet/* /opt/ghc1/* "/usr/local/share/boost1/*" - - name: Install dependencies - run: | - dnf -y install python3-pip - pip3 install meson - uses: actions/checkout@v4 - name: Get the version and date run: |