Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use macos-14 runner #140

Merged
merged 1 commit into from
Feb 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Use macos-14 runner
This sets up the macos-14 runner in the CI pipeline for testing and producing artifacts.
swernli committed Feb 1, 2024
commit 762b36d4f547535385b2c4e2876ed7ac9c9fb079
2 changes: 1 addition & 1 deletion .github/actions/install-llvm/action.yml
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@ runs:
- name: MacOS - Install build dependencies, ninja
run: brew install ninja
shell: pwsh
if: ${{ (inputs.os == 'macos-11') && (steps.cache-llvm.outputs.cache-hit != 'true') }}
if: ${{ (inputs.os == 'macos-11' || inputs.os == 'macos-14') && (steps.cache-llvm.outputs.cache-hit != 'true') }}
- name: Windows - Install LLVM 14.0.6
run: choco install llvm --version=14.0.6 --allow-downgrade
shell: pwsh
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -108,6 +108,7 @@ jobs:
- { os: "ubuntu-22.04", arch: "amd64" }
- { os: "windows-2019", arch: "amd64" }
- { os: "macos-11", arch: "amd64" }
- { os: "macos-14", arch: "arm64" }
steps:
- uses: actions/checkout@v3
- name: Setup rust toolchain