From 2f084557621e8ed2682e15c4da422783356e53b1 Mon Sep 17 00:00:00 2001 From: olexiyb Date: Fri, 14 Jun 2024 18:50:47 +0300 Subject: [PATCH] On april 2 github `macos-latest` became arm https://github.com/actions/runner-images/pull/9601/files In order to use old `macos-latest` we should use `macos-12` Potentially will fix: https://github.com/ggerganov/llama.cpp/issues/6975 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81ce770cc..a8fcae043 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