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

Upgrade macOS image to 13 #3442

Merged
merged 1 commit into from Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/bors.yml
Expand Up @@ -38,7 +38,7 @@ jobs:
contents: read # to fetch code (actions/checkout)

name: macOS
runs-on: macos-12
runs-on: macos-13
strategy:
fail-fast: true
matrix:
Expand Down Expand Up @@ -262,9 +262,9 @@ jobs:
max-parallel: 4
matrix:
target:
- { toolchain: stable, os: macos-12 }
- { toolchain: beta, os: macos-12 }
- { toolchain: nightly, os: macos-12 }
- { toolchain: stable, os: macos-13 }
- { toolchain: beta, os: macos-13 }
- { toolchain: nightly, os: macos-13 }
# Use macOS 11 for older toolchains as newer Xcode donesn't work well.
# FIXME: Disabled due to:
# error: failed to parse registry's information for: serde
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Expand Up @@ -30,7 +30,7 @@ jobs:

macos:
name: macOS
runs-on: macos-12
runs-on: macos-13
strategy:
fail-fast: true
matrix:
Expand Down
3 changes: 2 additions & 1 deletion libc-test/Cargo.toml
Expand Up @@ -16,7 +16,8 @@ version = "0.2.150"
default-features = false

[build-dependencies]
cc = "1.0.61"
# FIXME: 1.0.84 has a bug about macOS version detection.
cc = "=1.0.83"
# FIXME: Use fork ctest until the maintainer gets back.
ctest2 = "0.4.3"

Expand Down