Skip to content

Commit b8f5fc8

Browse files
authored
Merge pull request #2166 from buildpacks/chore/fix-macos-binaries
Building darwin arm64 binaries by default on CI and amd64 during releases
2 parents f56bca5 + e792c69 commit b8f5fc8

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ jobs:
2323
config: [macos, linux, windows-lcow, windows-wcow]
2424
include:
2525
- config: macos
26-
os: macos
26+
# since macos-14 the latest runner is arm64
27+
os: macos-arm64
2728
runner: macos-latest
2829
no_docker: "true"
2930
pack_bin: pack
@@ -170,8 +171,9 @@ jobs:
170171
- name: linux-arm64
171172
goarch: arm64
172173
goos: linux
173-
- name: macos-arm64
174-
goarch: arm64
174+
- name: macos
175+
# since macos-14 default runner is arm, we need to build for intel architecture later
176+
goarch: amd64
175177
goos: darwin
176178
- name: linux-s390x
177179
goarch: s390x

0 commit comments

Comments
 (0)