From e792c692201c6fca15b55397eb13f20a45f59e7e Mon Sep 17 00:00:00 2001 From: Juan Bustamante Date: Fri, 24 May 2024 10:11:20 -0500 Subject: [PATCH] Since macos14 the github runner is arm64 Signed-off-by: Juan Bustamante --- .github/workflows/build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 67d1a7870..a575ecce1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,8 @@ jobs: config: [macos, linux, windows-lcow, windows-wcow] include: - config: macos - os: macos + # since macos-14 the latest runner is arm64 + os: macos-arm64 runner: macos-latest no_docker: "true" pack_bin: pack @@ -170,8 +171,9 @@ jobs: - name: linux-arm64 goarch: arm64 goos: linux - - name: macos-arm64 - goarch: arm64 + - name: macos + # since macos-14 default runner is arm, we need to build for intel architecture later + goarch: amd64 goos: darwin - name: linux-s390x goarch: s390x