We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5221a08 commit 9cb9814Copy full SHA for 9cb9814
.github/workflows/build-macos-intel.yml
@@ -8,7 +8,7 @@ on:
8
jobs:
9
10
macOS:
11
- runs-on: macos-13
+ runs-on: macos-latest-large
12
13
steps:
14
@@ -91,6 +91,12 @@ jobs:
91
cd build
92
ninja
93
94
+ - name: Build Package
95
+ if: ${{ ! matrix.docs }}
96
+ run: |
97
+ cd build
98
+ cpack -G Bundle
99
+
100
- name: Run Tests
101
if: ${{ false }} # Metal is not available on GH macOS runners
102
run: |
@@ -107,3 +113,9 @@ jobs:
107
113
build/src/ngscopeclient/shaders/*
108
114
build/lib/scopehal/libscopehal.dylib
109
115
build/lib/scopeprotocols/libscopeprotocols.dylib
116
117
+ - name: Upload Package
118
+ uses: actions/upload-artifact@v4
119
+ with:
120
+ name: ngscopeclient-${{ runner.os }}-${{ github.job }}-package
121
+ path: build/*.dmg
0 commit comments