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 f432d8d commit 949e3edCopy full SHA for 949e3ed
.github/workflows/build.yml
@@ -1247,3 +1247,30 @@ jobs:
1247
-DGGML_CANN=on \
1248
-DSOC_TYPE=${{ matrix.device }}
1249
cmake --build build -j $(nproc)
1250
+
1251
+jobs:
1252
+ macOS-latest-cmake-arm64:
1253
+ runs-on: [self-hosted, macOS, ARM64]
1254
1255
+ steps:
1256
+ - name: Clone
1257
+ id: checkout
1258
+ uses: actions/checkout@v4
1259
1260
+ - name: ccache
1261
+ uses: ggml-org/[email protected]
1262
+ with:
1263
+ key: macOS-latest-cmake-arm64
1264
+ evict-old-files: 1d
1265
1266
+ - name: Dependencies
1267
+ id: depends
1268
+ continue-on-error: true
1269
+ run: |
1270
+ brew update
1271
+ brew install curl
1272
1273
+ - name: Test
1274
+ id: ggml-ci
1275
1276
+ GG_BUILD_CLOUD=1 GG_BUILD_METAL=1 bash ./ci/run.sh ./tmp/results ./tmp/mnt
0 commit comments