diff --git a/.github/workflows/build_latest.yml b/.github/workflows/build_latest.yml index e1a05b046..79cc591e0 100644 --- a/.github/workflows/build_latest.yml +++ b/.github/workflows/build_latest.yml @@ -4,6 +4,7 @@ on: push: branches: - master + - check_ubuntu_6.7 pull_request: defaults: @@ -16,7 +17,8 @@ jobs: fail-fast: false matrix: os: ['ubuntu', 'windows'] - qt-version: [ '5.12.*', '5.15.*', '6.7.*' ] + # version > 6.7.0 are currently not supported by jurplel/install-qt-action + qt-version: [ '5.12.*', '5.15.*', '6.7.0' ] python-version: [ '3.12' ] runs-on: ${{ matrix.os }}-latest steps: @@ -30,8 +32,7 @@ jobs: - name: Install Qt ${{matrix.qt-version}} uses: jurplel/install-qt-action@v4 with: - # 6.7.* currently does not work with ubuntu with this action - version: ${{ matrix.os == 'ubuntu' && matrix.qt-version == '6.7.*' && '6.6.*' || matrix.qt-version }} + 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') }}