File tree Expand file tree Collapse file tree 1 file changed +26
-8
lines changed Expand file tree Collapse file tree 1 file changed +26
-8
lines changed Original file line number Diff line number Diff line change @@ -24,18 +24,36 @@ jobs:
24
24
25
25
build_ubuntu_2204 :
26
26
runs-on : ubuntu-22.04
27
-
28
27
steps :
29
- - uses : actions/checkout@v1
28
+ - uses : actions/checkout@v2
29
+ - name : Cache Qt
30
+ id : cache-qt-6-4
31
+ uses : actions/cache@v1 # not v2!
32
+ with :
33
+ path : ../Qt/6.4.2
34
+ key : ${{ runner.os }}-QtCache-Qt6-4
35
+
30
36
- name : Install Qt
31
37
uses : jurplel/install-qt-action@v2
32
38
with :
33
- version : 6.2.*
34
- host : linux
35
- target : desktop
36
- archives : qtbase qtsvg
37
- setup-python : false
39
+ version : 6.4.2
40
+ host : linux
41
+ target : desktop
42
+ install-deps : true
43
+ cached : ${{ steps.cache-qt-6-4.outputs.cache-hit }}
44
+ setup-python : false
45
+ tools : ' '
46
+ tools-only : false
47
+
48
+ - name : Install needed xkbcommon symlink
49
+ run : sudo apt-get install libxkbcommon-dev -y
50
+
51
+ - name : Ubuntu and Qt version
52
+ run : |
53
+ cat /etc/issue
54
+ echo number of processors: $(nproc)
55
+ qmake -v
38
56
- name : qmake
39
57
run : qmake
40
58
- name : make
41
- run : make -j4
59
+ run : make -j$(nproc)
You can’t perform that action at this time.
0 commit comments