Skip to content

Commit

Permalink
Added Qt 5 build and do Qt 6 build on macOS 15
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn committed Dec 21, 2024
1 parent 1b3eaf7 commit 374c398
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,18 @@ jobs:
sudo cmake --install build --config Release
macos:
name: macOS
runs-on: macos-latest
name: macOS ${{ matrix.macos_version }} (Qt ${{ matrix.qt_version }})
runs-on: macos-${{ matrix.macos_version }}

strategy:
matrix:
include:
- macos_version: 14
qt_version: 5
qt_exact_version: 5.15.2
- macos_version: 15
qt_version: 6
qt_exact_version: 6.8.1

steps:
- name: Checkout repository
Expand All @@ -74,7 +84,7 @@ jobs:
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: 6.8.1
version: ${{ matrix.qt_exact_version }}
arch: clang_64
cache: true

Expand Down

0 comments on commit 374c398

Please sign in to comment.