Skip to content

Commit 0dca016

Browse files
committed
fix: remove macOS 15 from CI build matrix. It was already being tested by
the test-macos-homebrew job, and it conflicts with the actual build that we want, which is macOS 14 for backwards-compatibility. Signed-off-by: deadprogram <[email protected]>
1 parent 28a911b commit 0dca016

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/build-macos.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,12 @@ jobs:
1818
matrix:
1919
# macos-13: amd64 (oldest supported version as of 18-10-2024)
2020
# macos-14: arm64 (oldest arm64 version)
21-
os: [macos-13, macos-14, macos-15]
21+
os: [macos-13, macos-14]
2222
include:
2323
- os: macos-13
2424
goarch: amd64
2525
- os: macos-14
2626
goarch: arm64
27-
- os: macos-15
28-
goarch: arm64
2927
runs-on: ${{ matrix.os }}
3028
steps:
3129
- name: Install Dependencies

0 commit comments

Comments
 (0)