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

Update the workflow with the new min macOS image. #126

Merged
merged 1 commit into from
Jul 18, 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
Update the workflow with the new min macOS image.
  • Loading branch information
sheredom committed Jul 17, 2024
commit 2170348b3972e4ceb4894643bb70ebf6c7f0dce2
14 changes: 7 additions & 7 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-11, macos-14]
os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
type: [Debug, RelWithDebInfo, MinSizeRel, Release]
compiler: [default, clang, gcc, tcc]
exclude:
- {os: "macos-11", compiler: "clang"}
- {os: "macos-11", compiler: "gcc"}
- {os: "macos-11", compiler: "tcc"}
- {os: "macos-14", compiler: "clang"}
- {os: "macos-14", compiler: "gcc"}
- {os: "macos-14", compiler: "tcc"}
- {os: "macos-13", compiler: "clang"}
- {os: "macos-13", compiler: "gcc"}
- {os: "macos-13", compiler: "tcc"}
- {os: "macos-latest", compiler: "clang"}
- {os: "macos-latest", compiler: "gcc"}
- {os: "macos-latest", compiler: "tcc"}
- {os: "ubuntu-latest", compiler: "default"}
- {os: "ubuntu-latest", compiler: "default"}
- {os: "windows-latest", compiler: "gcc"}
Expand Down
Loading