Skip to content

Commit

Permalink
ci: Workaround Qt installer bug with Qt 6.7
Browse files Browse the repository at this point in the history
It now expects linux_gcc_64 folder but still installs to
gcc_64/.

Error was:
Updater caused an IO error: [Errno 2] No such file or directory: '/home/runner/work/KDDockWidgets/Qt/6.7.0/linux_gcc_64/mkspecs/qconfig.pri'
  • Loading branch information
iamsergio committed Mar 16, 2024
1 parent 978f9cb commit bdfed88
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/lsan6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:
qt_version: "6.7.0"

steps:

- name: Workaround installer bug when using 6.7
run: |
mkdir -p /home/runner/work/KDDockWidgets/Qt/${{ matrix.preset.qt_version }}/gcc_64
ln -sf /home/runner/work/KDDockWidgets/Qt/${{ matrix.preset.qt_version }}/gcc_64 /home/runner/work/KDDockWidgets/Qt/${{ matrix.preset.qt_version }}/linux_gcc_64
- name: Install Qt ${{ matrix.preset.qt_version }}
uses: jurplel/install-qt-action@v3
with:
Expand Down

0 comments on commit bdfed88

Please sign in to comment.