Skip to content

Commit 0a861af

Browse files
utzcozrpavlik
authored andcommitted
ci: Add GitHub Action for macOS building
humbletim/setup-vulkan-sdk's cache mechanism doesn't work for the same OS but different architectures. So this CL only tests with macOS 14 with arm64 architecture. Signed-off-by: utzcoz <[email protected]> Reviewed-by: Rylie Pavlik <[email protected]>
1 parent 52fd9c0 commit 0a861af

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.github/workflows/macOS.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Copyright (c) 2024, The Khronos Group Inc.
2+
# SPDX-License-Identifier: CC0-1.0
3+
4+
name: macOS
5+
6+
on:
7+
push:
8+
branches: [ main ]
9+
10+
pull_request:
11+
branches: [ main ]
12+
13+
permissions:
14+
contents: read
15+
16+
jobs:
17+
macOS-build:
18+
strategy:
19+
matrix:
20+
device: [
21+
macos-14, # Tests Mac arm64
22+
]
23+
runs-on: ${{ matrix.device }}
24+
25+
steps:
26+
- uses: actions/checkout@v4
27+
- name: "Get modern CMake and Ninja"
28+
uses: "lukka/[email protected]"
29+
- name: Prepare Vulkan SDK
30+
uses: humbletim/[email protected]
31+
with:
32+
vulkan-query-version: 1.3.290.0
33+
vulkan-components: Vulkan-Headers, Vulkan-Loader
34+
vulkan-use-cache: true
35+
- name: Build
36+
run: |
37+
mkdir -p build/macos
38+
cd build/macos
39+
cmake -G "Xcode" ../..
40+
xcodebuild -list -project OPENXR.xcodeproj/
41+
xcodebuild -scheme ALL_BUILD build

0 commit comments

Comments
 (0)