We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8784a2 commit 1c71ba9Copy full SHA for 1c71ba9
.github/workflows/linux-builds.yml
@@ -27,14 +27,19 @@ jobs:
27
28
steps:
29
- uses: actions/checkout@v1
30
- - name: Install Qt
31
- uses: jurplel/install-qt-action@v2
+ - name: install deps
+ run: |
32
+ sudo apt-get update --fix-missing
33
+ sudo apt-get install libicu-dev
34
+ - name: install qt
35
+ uses: jurplel/install-qt-action@v3
36
with:
- version: 6.2.*
37
+ version: 6.4.2
38
host: linux
39
target: desktop
- archives: qtbase qtsvg
40
+ archives: qtbase qtbase-priv qtsvg
41
setup-python: false
42
+ install-deps: true
43
- name: qmake
44
run: qmake
45
- name: make
0 commit comments