From b54eb95f1412f36d0609ebc59a0af23608d6ea75 Mon Sep 17 00:00:00 2001 From: Lewis Clark Date: Mon, 31 Oct 2022 09:23:59 +0000 Subject: [PATCH] Remove 32-bit/i386 macOS build from CI https://developer.apple.com/documentation/xcode-release-notes/xcode-10-release-notes The macOS 10.14 SDK no longer contains support for compiling 32-bit applications. If developers need to compile for i386, Xcode 9.4 or earlier is required. (39858111) No stable GitHub Actions macOS image includes that old of an Xcode version. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f7b3aa..c579dd1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -86,7 +86,7 @@ jobs: - { name: "macOS Big Sur 11", distro: macos-11 } - { name: "macOS Monterey 12", distro: macos-12 } build_type: [Debug, Release] - toolchain: ["gcc-macos-i386", "gcc-macos-x86_64", "gcc-macos-fat"] + toolchain: ["gcc-macos-x86_64"] name: "${{matrix.os.name}} ${{matrix.build_type}} ${{matrix.toolchain}}" runs-on: ${{matrix.os.distro}}