Skip to content

Commit

Permalink
CI: Fixed installation of Qt on macOS (#4124)
Browse files Browse the repository at this point in the history
Seems like it does need Python set up. To avoid that breaking the Tiled
compile, disable the Python plugin explicitly.
  • Loading branch information
bjorn authored Dec 20, 2024
1 parent 6f31d8f commit b9f3ad2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,6 @@ jobs:
version: ${{ matrix.qt_version }}
arch: clang_64
modules: ${{ matrix.qt_modules }}
setup-python: false
cache: true

- name: Setup Qbs
Expand All @@ -235,7 +234,11 @@ jobs:
- name: Build Tiled
run: |
qbs install --install-root install config:release qbs.architectures:${{ matrix.architectures }} qbs.installPrefix:"" projects.Tiled.staticZstd:true
qbs install --install-root install config:release \
qbs.architectures:${{ matrix.architectures }} \
qbs.installPrefix:"" \
projects.Tiled.staticZstd:true \
products.python.condition:false
- name: Deploy Qt
run: |
Expand Down

0 comments on commit b9f3ad2

Please sign in to comment.