Skip to content

Commit b9f3ad2

Browse files
authored
CI: Fixed installation of Qt on macOS (#4124)
Seems like it does need Python set up. To avoid that breaking the Tiled compile, disable the Python plugin explicitly.
1 parent 6f31d8f commit b9f3ad2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/packages.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,6 @@ jobs:
217217
version: ${{ matrix.qt_version }}
218218
arch: clang_64
219219
modules: ${{ matrix.qt_modules }}
220-
setup-python: false
221220
cache: true
222221

223222
- name: Setup Qbs
@@ -235,7 +234,11 @@ jobs:
235234
236235
- name: Build Tiled
237236
run: |
238-
qbs install --install-root install config:release qbs.architectures:${{ matrix.architectures }} qbs.installPrefix:"" projects.Tiled.staticZstd:true
237+
qbs install --install-root install config:release \
238+
qbs.architectures:${{ matrix.architectures }} \
239+
qbs.installPrefix:"" \
240+
projects.Tiled.staticZstd:true \
241+
products.python.condition:false
239242
240243
- name: Deploy Qt
241244
run: |

0 commit comments

Comments
 (0)