Skip to content

Commit

Permalink
Use jdpurcell's patch on linux-arm runners for now
Browse files Browse the repository at this point in the history
At least until jurplel/install-qt-action#248
is resolved.
  • Loading branch information
pcolby committed Jan 18, 2025
1 parent b7e5bf1 commit 30c2794
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,12 @@ jobs:
sudo apt install qt6-{base-{dev{,-tools},doc-dev},connectivity-{dev,doc-html},l10n-tools,tools-dev{,-tools}}
- name: Install online Qt version
if: contains(matrix.qt, '.') # ie if not using Ubuntu's Qt5/Qt6.
uses: jurplel/install-qt-action@v4
# \todo Revert to only using jurplel's action when issue #248 is resolved.
# Note, can probably remove the host property below at the same time.
# \todo See https://github.com/jurplel/install-qt-action/issues/248
uses: >-
${{ matrix.arch == 'arm64' && 'jdpurcell/install-qt-action@b45c67aaa9e0ea77e59a7031ec14a12d5ddf4b35'
|| 'jurplel/install-qt-action@v4' }}
with:
version: ${{ matrix.qt }}
host: linux${{ matrix.arch == 'arm64' && '_arm64' || '' }}
Expand Down

0 comments on commit 30c2794

Please sign in to comment.