From 12c7df98e453dda0829941fe56e47ecb17e4b1d1 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Wed, 9 Jul 2025 15:26:07 -0700 Subject: [PATCH] ci: fix macos version for building --- .github/workflows/build.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3476d8fc..df16af4c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -98,6 +98,8 @@ jobs: ARCH: aarch64 OS: macos + # macos-14 runs on arm CPU. see + # https://github.com/actions/runner-images?tab=readme-ov-file runs-on: macos-14 timeout-minutes: 15 @@ -136,7 +138,12 @@ jobs: ARCH: x86_64 OS: macos - runs-on: macos-14 + # macos-13 runs on x86 CPU. see + # https://github.com/actions/runner-images?tab=readme-ov-file + # If we want to build for macos-14 or superior, we need to switch to + # macos-14-large. + # No need for now, but maybe we will need it in the short term. + runs-on: macos-13 timeout-minutes: 15 steps: