Skip to content

Commit

Permalink
Add support for Qt 6.7
Browse files Browse the repository at this point in the history
- use Qt 6.7 for CI build
  • Loading branch information
mrbean-bremen committed Jun 20, 2024
1 parent 39c414e commit f86cfb2
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 74 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/build_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ on:
push:
branches:
- master
- qt6.7
pull_request:

defaults:
run:
shell: bash
Expand All @@ -16,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: ['ubuntu', 'windows']
qt-version: [ '5.12.*', '5.15.*', '6.5.*' ]
qt-version: [ '5.12.*', '5.15.*', '6.7.*' ]
python-version: [ '3.12' ]
runs-on: ${{ matrix.os }}-latest
steps:
Expand All @@ -27,13 +28,17 @@ jobs:
with:
arch: amd64

- name: Check modules
if: ${{ matrix.os == 'ubuntu' }}
run: |
python3 -m aqt list-qt linux desktop --modules 6.7.2 gcc_64
- name: Install Qt ${{matrix.qt-version}}
uses: jurplel/install-qt-action@v4
with:
version: ${{ matrix.qt-version }}
modules: ${{startsWith(matrix.qt-version, '6') && 'qt5compat qtscxml qtpositioning qtwebchannel qtmultimedia qtwebengine' || '' }}
arch: ${{ matrix.os == 'ubuntu' && 'gcc_64' || (startsWith(matrix.qt-version, '5.12') && 'win64_msvc2017_64' || 'win64_msvc2019_64') }}
archives: "qtmultimedia qtbase qttools qtdeclarative ${{ matrix.os == 'windows' && 'qtwinextras' || 'qtlinuxextras qtwayland icu' }}"

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand Down
Loading

0 comments on commit f86cfb2

Please sign in to comment.