-
Notifications
You must be signed in to change notification settings - Fork 112
74 lines (64 loc) · 1.66 KB
/
build-macos-arm64.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Build-macOS-arm64
on:
push:
pull_request:
workflow_dispatch:
jobs:
macOS:
runs-on: macos-latest-arm64
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Dependencies
run: |
brew uninstall pkg-config
brew install \
pkgconf \
libsigc++@2 \
glfw \
cmake \
yaml-cpp \
catch2 \
libomp \
vulkan-headers \
vulkan-loader \
spirv-tools \
glslang \
shaderc \
molten-vk \
ninja
- name: Build
run: |
mkdir build
cd build
cmake \
-G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_DOCS=OFF \
-DBUILD_TESTING=ON \
-DCMAKE_PREFIX_PATH=$(brew --prefix):$(brew --prefix)/opt/libomp \
..
ninja
- name: Run Tests
if: ${{ false }} # Temporary disable Run Tests
run: |
cd build
ninja test
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: ngscopeclient-macos
path: |
build/src/ngscopeclient/ngscopeclient
build/src/ngscopeclient/icons/*
build/src/ngscopeclient/shaders/*
build/lib/scopehal/libscopehal.dylib
build/lib/scopeprotocols/libscopeprotocols.dylib
- name: Upload Documentation
if: ${{ false }} # a LaTeX toolchain for macOS takes a while to install, so skip for now
uses: actions/upload-artifact@v3
with:
name: ngscopeclient-manual
path: build/doc/ngscopeclient-manual.pdf