From 125717705c156c31e3108ad0d78e348eb5416043 Mon Sep 17 00:00:00 2001 From: Paul Colby Date: Fri, 16 Feb 2024 08:18:59 +1100 Subject: [PATCH] Try installing Python manually --- .github/workflows/build.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ad86b0107..536e67cd7 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -102,12 +102,16 @@ jobs: sudo apt update sudo apt upgrade sudo apt install clang lcov libfuse2 + - uses: actions/setup-python@v5 + with: + python-version: >=3.9 - name: Install Qt uses: jurplel/install-qt-action@v3 with: version: ${{ matrix.qt }} arch: ${{ startsWith(matrix.qt, '6.7') && 'linux_gcc_64' || 'gcc_64' }} modules: ${{ startsWith(matrix.qt, '6') && 'qtconnectivity' || '' }} + setup-python: false documentation: true doc-archives: ${{ (startsWith(matrix.qt, '5.10.') || startsWith(matrix.qt, '5.11.')) && 'qt' || (startsWith(matrix.qt, '5') && 'qtcore qtbluetooth' || 'qtcore') }} doc-modules: ${{ startsWith(matrix.qt, '6') && 'qtbluetooth' || '' }}