Skip to content

Commit

Permalink
Exclude Qt versions not supported by Qt's online installer
Browse files Browse the repository at this point in the history
Thus, not supported by aqtinstall, and thus not supported by
install-qt-action.
  • Loading branch information
pcolby committed Jan 18, 2025
1 parent ef98409 commit e1176d0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,21 @@ jobs:
cc:
- clang
- gcc
exclude:
# Qt's online installer only provides arm64 builds from Qt 6.7 onwards. Note, Ubuntu (Debian) does provide
# arm64 Qt builds, so we don't exclude `5` nor `6`, just the Qt online versions (5.x.y and 6.[0-6].y).
- { qt: 5.9.9, arch: arm64 }
- { qt: 5.10.1, arch: arm64 }
- { qt: 5.11.3, arch: arm64 }
- { qt: 5.12.12, arch: arm64 }
- { qt: 5.13.2, arch: arm64 }
- { qt: 5.14.2, arch: arm64 }
- { qt: 5.15.2, arch: arm64 }
- { qt: 6.2.4, arch: arm64 }
- { qt: 6.3.2, arch: arm64 }
- { qt: 6.4.3, arch: arm64 }
- { qt: 6.5.3, arch: arm64 }
- { qt: 6.6.3, arch: arm64 }
steps:
- name: Upgrade OS
run: |
Expand Down

0 comments on commit e1176d0

Please sign in to comment.