-
Notifications
You must be signed in to change notification settings - Fork 5
53 lines (47 loc) · 1.09 KB
/
macos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: MacOS CI
on:
pull_request:
branches: [main]
push:
branches:
- main
- 'releases/**'
paths:
- '.github/workflows/macos.yml'
- 'src/**'
- 'assets/shaders/**'
- '*.sh'
- '*.bat'
- '**/CMakeLists.txt'
jobs:
build:
runs-on: macos-12
env:
SDK_VERSION: 1.3.280
steps:
- uses: actions/checkout@v4
- name: Install macOS dependencies
run: |
brew install ninja
- name: Install Vulkan SDK
run: |
brew install molten-vk
brew install glslang
- name: Restore cached Primes
id: cache-primes-restore
uses: actions/cache/restore@v4
with:
path: |
build/vcpkg.macos
key: ${{ runner.os }}-primes
- name: Compile vcpkg dependencies
run: ./vcpkg_macos.sh
- name: Save Primes
id: cache-primes-save
uses: actions/cache/save@v4
with:
path: |
build/vcpkg.macos
key: ${{ steps.cache-primes-restore.outputs.cache-primary-key }}
- name: Compile gkNextRenderer
run: ./build_macos.sh