From 734a80cc92f655f51ef3c492a31317d226b46cf0 Mon Sep 17 00:00:00 2001 From: Ian Davis Date: Tue, 10 Dec 2024 14:36:36 -0800 Subject: [PATCH] Drop the deprecated macos-12 runner --- .github/actions/install-llvm/action.yml | 2 +- .github/workflows/ci.yml | 8 -------- .github/workflows/llvm.yml | 8 -------- 3 files changed, 1 insertion(+), 17 deletions(-) diff --git a/.github/actions/install-llvm/action.yml b/.github/actions/install-llvm/action.yml index 814dc824..d185c7dc 100644 --- a/.github/actions/install-llvm/action.yml +++ b/.github/actions/install-llvm/action.yml @@ -42,7 +42,7 @@ runs: - name: MacOS - Install build dependencies, ninja run: brew install ninja shell: pwsh - if: ${{ ((inputs.os == 'macos-12') || (inputs.os == 'macos-14')) && (steps.cache-llvm.outputs.cache-hit != 'true') }} + if: ${{ ((inputs.os == 'macos-14')) && (steps.cache-llvm.outputs.cache-hit != 'true') }} - name: Configure long paths run: git config --global core.longpaths true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8bf9ad89..ae709bb4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,14 +40,6 @@ jobs: target: "default", env: {}, } - - { - os: "macos-12", - arch: "amd64", - target: "default", - env: { - MACOSX_DEPLOYMENT_TARGET: 10.9 - }, - } - { os: "macos-14", arch: "aarch64", diff --git a/.github/workflows/llvm.yml b/.github/workflows/llvm.yml index 94b7d26a..f2949825 100644 --- a/.github/workflows/llvm.yml +++ b/.github/workflows/llvm.yml @@ -28,11 +28,6 @@ jobs: arch: "amd64", env: {}, } - - { - os: "macos-12", - arch: "amd64", - env: {}, - } - { os: "macos-14", arch: "aarch64", @@ -55,9 +50,6 @@ jobs: - name: Windows - Install build dependencies, sccache, ninja run: choco install --accept-license -y sccache ninja if: ${{ matrix.config.os == 'windows-2019' }} - - name: MacOS - Install build dependencies, ccache, ninja - run: brew install ccache ninja - if: ${{ matrix.config.os == 'macos-12' }} - name: MacOS - Install build dependencies, ccache, ninja run: brew install ccache ninja if: ${{ matrix.config.os == 'macos-14' }}