From 0dca0167493bf88204a48a9e2fe74cf29dbb9044 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Thu, 18 Sep 2025 19:10:54 +0200 Subject: [PATCH] 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 --- .github/workflows/build-macos.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index b0142488b..8dc15ddde 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -18,14 +18,12 @@ jobs: matrix: # macos-13: amd64 (oldest supported version as of 18-10-2024) # macos-14: arm64 (oldest arm64 version) - os: [macos-13, macos-14, macos-15] + os: [macos-13, macos-14] include: - os: macos-13 goarch: amd64 - os: macos-14 goarch: arm64 - - os: macos-15 - goarch: arm64 runs-on: ${{ matrix.os }} steps: - name: Install Dependencies