diff options
author | olexiyb <olexiyb@gmail.com> | 2024-06-14 20:28:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-14 20:28:34 +0300 |
commit | f8ec8877b75774fc6c47559d529dac423877bcad (patch) | |
tree | 47e59a855e22e50b3d995efcea0a25e8d5dc9eaf | |
parent | 76d66ee0be91e2bec93206e821ee1db8d023cff5 (diff) |
ci : fix macos x86 build (#7940)
In order to use old `macos-latest` we should use `macos-12`
Potentially will fix: https://github.com/ggerganov/llama.cpp/issues/6975
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81ce770c..a8fcae04 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -84,7 +84,7 @@ jobs: name: llama-bin-macos-arm64.zip macOS-latest-cmake-x64: - runs-on: macos-latest + runs-on: macos-12 steps: - name: Clone |