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

[CI] macOS 11 is no longer available on GHA #1928

Merged
merged 1 commit into from
Jul 8, 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
8 changes: 3 additions & 5 deletions .github/workflows/coq-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
strategy:
fail-fast: false
matrix:
# macOS 11, 12, 13 are x86_64; macOS 14 is arm64
# macOS 12, 13 are x86_64; macOS 14 is arm64
include:
- os: { name: 'macOS 11', arch: 'x86_64', runs-on: 'macos-11' } # move to macOS-12 when 11 is removed
- os: { name: 'macOS 12', arch: 'x86_64', runs-on: 'macos-12' }
ocaml-compiler: '4.11.1'
- os: { name: 'macOS 14', arch: 'arm64' , runs-on: 'macos-14' }
ocaml-compiler: '4.14.2'
Expand Down Expand Up @@ -146,10 +146,8 @@ jobs:
fail-fast: false
matrix:
arch: ['', '-x86_64', '-arm64']
os: ['macos-11', 'macos-12', 'macos-13', 'macos-14', 'macos-latest']
os: ['macos-12', 'macos-13', 'macos-14', 'macos-latest']
exclude:
- os: 'macos-11'
arch: '-arm64'
- os: 'macos-12'
arch: '-arm64'
- os: 'macos-13'
Expand Down
Loading