Skip to content

Commit

Permalink
Use Qt's MinGW for Qt 6.7 too
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Jan 2, 2024
1 parent aa01532 commit 8fc29b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -336,9 +336,9 @@ jobs:
version: ${{ matrix.qt }}
modules: ${{ startsWith(matrix.qt, '6') && 'qtconnectivity' || '' }}
arch: ${{ matrix.qtArch }}
# Use Qt's shipped MinGW for Qt 6.6 for now, as the runner's MinGW version crashes with Qt 6.6.0.
# Use Qt's shipped MinGW for Qt 6.6+ for now, as the runner's MinGW version crashes with Qt 6.6 and 6.7.
# \todo Remove this if/when the runner's MinGW is updated to fix the incompatibility.
tools: ${{ startsWith(matrix.qt, '6.6') && startsWith(matrix.generator, 'MinGW') && 'tools_mingw90' || '' }}
tools: ${{ (startsWith(matrix.qt, '6.6') || startsWith(matrix.qt, '6.7') && startsWith(matrix.generator, 'MinGW') && 'tools_mingw90' || '' }}
#add-tools-to-path: true ///< \toto Use once released by install-qt-action.
- name: Configure cross-compilation
if: matrix.arch == 'arm64'
Expand Down

0 comments on commit 8fc29b7

Please sign in to comment.