Skip to content

Commit 2e978ac

Browse files
committed
Add Qt 6.7 workflow
1 parent 95db500 commit 2e978ac

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.github/workflows/build.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ env:
1111

1212
jobs:
1313
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+
1422
runs-on: ubuntu-latest
1523

1624
steps:
@@ -26,7 +34,8 @@ jobs:
2634
- name: Install Qt
2735
uses: jurplel/install-qt-action@v4
2836
with:
29-
version: '6.6.*'
37+
version: '${{qt_version}}'
38+
arch: '${{qt_arch}}'
3039
- name: Configure CMake
3140
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
3241

.github/workflows/utests.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ env:
1111

1212
jobs:
1313
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+
1422
runs-on: ubuntu-latest
1523

1624
steps:
@@ -26,7 +34,8 @@ jobs:
2634
- name: Install Qt
2735
uses: jurplel/install-qt-action@v4
2836
with:
29-
version: '6.6.*'
37+
version: '${{qt_version}}'
38+
arch: '${{qt_arch}}'
3039
- name: Configure CMake
3140
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DSCRATCHCPPRENDER_BUILD_UNIT_TESTS=ON
3241

0 commit comments

Comments
 (0)