Use System Qt for generic Linux build
This commit is contained in:
parent
d3e7d30ee0
commit
f9d4751ec0
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@ -88,6 +88,7 @@ jobs:
|
||||
key: ${{ runner.os }}-${{ matrix.qt_version }}-${{ matrix.qt_arch }}-qt_cache
|
||||
|
||||
- name: Install Qt
|
||||
if: runner.os != 'Linux' || matrix.app_image == true
|
||||
uses: jurplel/install-qt-action@v2
|
||||
with:
|
||||
version: ${{ matrix.qt_version }}
|
||||
@ -96,6 +97,11 @@ jobs:
|
||||
cached: ${{ steps.cache-qt.outputs.cache-hit }}
|
||||
dir: "${{ github.workspace }}/Qt/"
|
||||
|
||||
- name: Install System Qt on Linux
|
||||
if: runner.os == 'Linux' && matrix.app_image != true
|
||||
run: |
|
||||
sudo apt-get -y install qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools libqt5core5a libqt5network5 libqt5gui5
|
||||
|
||||
- name: Install Ninja
|
||||
uses: urkle/action-get-ninja@v1
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user