Skip to content

Commit

Permalink
Drop the deprecated macos-12 runner
Browse files Browse the repository at this point in the history
  • Loading branch information
idavis committed Dec 10, 2024
1 parent 7d4261d commit 734a80c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 17 deletions.
2 changes: 1 addition & 1 deletion .github/actions/install-llvm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/llvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,6 @@ jobs:
arch: "amd64",
env: {},
}
- {
os: "macos-12",
arch: "amd64",
env: {},
}
- {
os: "macos-14",
arch: "aarch64",
Expand All @@ -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' }}
Expand Down

0 comments on commit 734a80c

Please sign in to comment.