aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authortxtsd <thexerothermicsclerodermoid@gmail.com>2022-02-22 20:11:17 +0530
committertxtsd <thexerothermicsclerodermoid@gmail.com>2022-02-22 20:40:16 +0530
commitf9d4751ec04963749c16c5d707ce7e5411b41ca3 (patch)
treedd0db8c41a78ee2b9a2f04f758bc5e177b653442 /.github/workflows
parentd3e7d30ee0e242a6f591b61295adf05bf8488de1 (diff)
downloadPrismLauncher-f9d4751ec04963749c16c5d707ce7e5411b41ca3.tar.gz
PrismLauncher-f9d4751ec04963749c16c5d707ce7e5411b41ca3.tar.bz2
PrismLauncher-f9d4751ec04963749c16c5d707ce7e5411b41ca3.zip
Use System Qt for generic Linux build
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index dbfcb82f..793b081e 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -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