File tree 2 files changed +20
-2
lines changed
2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
build :
14
+ strategy :
15
+ matrix :
16
+ include :
17
+ - qt_version : ' 6.6'
18
+ qt_arch : ' gcc_64'
19
+ - qt_version : ' 6.7'
20
+ qt_arch : ' linux_gcc_64'
21
+
14
22
runs-on : ubuntu-latest
15
23
16
24
steps :
26
34
- name : Install Qt
27
35
uses : jurplel/install-qt-action@v4
28
36
with :
29
- version : ' 6.6.*'
37
+ version : ' ${{qt_version}}'
38
+ arch : ' ${{qt_arch}}'
30
39
- name : Configure CMake
31
40
run : cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
32
41
Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
build :
14
+ strategy :
15
+ matrix :
16
+ include :
17
+ - qt_version : ' 6.6'
18
+ qt_arch : ' gcc_64'
19
+ - qt_version : ' 6.7'
20
+ qt_arch : ' linux_gcc_64'
21
+
14
22
runs-on : ubuntu-latest
15
23
16
24
steps :
26
34
- name : Install Qt
27
35
uses : jurplel/install-qt-action@v4
28
36
with :
29
- version : ' 6.6.*'
37
+ version : ' ${{qt_version}}'
38
+ arch : ' ${{qt_arch}}'
30
39
- name : Configure CMake
31
40
run : cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DSCRATCHCPPRENDER_BUILD_UNIT_TESTS=ON
32
41
You can’t perform that action at this time.
0 commit comments