File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ jobs:
19
19
matrix :
20
20
include :
21
21
22
- - os : ubuntu-20 .04
22
+ - os : ubuntu-22 .04
23
23
qt_ver : 5
24
24
25
- - os : ubuntu-20 .04
25
+ - os : ubuntu-22 .04
26
26
qt_ver : 6
27
27
qt_host : linux
28
28
qt_version : ' 6.2.4'
57
57
runs-on : ${{ matrix.os }}
58
58
59
59
env :
60
+ CMAKE_POLICY_VERSION_MINIMUM : 3.5
60
61
MACOSX_DEPLOYMENT_TARGET : ${{ matrix.macosx_deployment_target }}
61
62
INSTALL_DIR : " install"
62
63
INSTALL_PORTABLE_DIR : " install-portable"
@@ -105,7 +106,7 @@ jobs:
105
106
106
107
- name : Setup ccache
107
108
if : runner.os != 'Windows' && inputs.build_type == 'Debug'
108
- uses : hendrikmuhs/ccache-action@v1.2.1
109
+ uses : hendrikmuhs/ccache-action@v1.2.18
109
110
with :
110
111
key : ${{ matrix.os }}-qt${{ matrix.qt_ver }}
111
112
@@ -127,7 +128,7 @@ jobs:
127
128
128
129
- name : Retrieve ccache cache (Windows)
129
130
if : runner.os == 'Windows' && inputs.build_type == 'Debug'
130
- uses : actions/cache@v3.0.2
131
+ uses : actions/cache@v3.4.3
131
132
with :
132
133
path : ' ${{ github.workspace }}\.ccache'
133
134
key : ${{ matrix.os }}-qt${{ matrix.qt_ver }}
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.15 ) # minimum version required by QuaZip
2
2
3
- if (WIN32 )
4
- # In Qt 5.1+ we have our own main() function, don't autolink to qtmain on Windows
5
- cmake_policy (SET CMP0020 OLD )
6
- endif ()
3
+ # if(WIN32)
4
+ # # In Qt 5.1+ we have our own main() function, don't autolink to qtmain on Windows
5
+ # cmake_policy(SET CMP0020 OLD)
6
+ # endif()
7
7
8
8
project (Launcher )
9
9
You can’t perform that action at this time.
0 commit comments