Skip to content

Commit b50241b

Browse files
author
Viktor Kopp
committed
Setup CI for macos15 with qt6
1 parent 57f58e2 commit b50241b

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/BuildPR.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,35 @@ jobs:
106106
with:
107107
name: DLTViewer-${{ matrix.macos }}-${{ matrix.abi }}
108108
path: build/dist/DLTViewer*.tgz
109+
110+
buildMacOS15:
111+
name: Build macOS
112+
runs-on: macos-15
113+
strategy:
114+
fail-fast: false
115+
matrix:
116+
abi: [ arm64 ]
117+
xcode: [ Xcode ]
118+
119+
steps:
120+
- name: Checkout
121+
uses: actions/checkout@v4
122+
with:
123+
fetch-depth: 0
124+
submodules: true
125+
- name: Investigate available XCode versions
126+
run: ls -n /Applications/ | grep Xcode*
127+
- name: Set XCode Version
128+
run: |
129+
sudo xcode-select -s /Applications/${{ matrix.xcode }}.app
130+
xcodebuild -version
131+
xcode-select --print-path
132+
- name: Install build environment
133+
run: scripts/darwin/install_qt6.sh
134+
- name: Show cmake version
135+
run: cmake --version
136+
- name: Build project
137+
run: scripts/darwin/build_cmake_qt6.sh
109138

110139

111140
buildUbuntu22and24:

0 commit comments

Comments
 (0)