This is an automated email from the ASF dual-hosted git repository.
chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fury.git
The following commit(s) were added to refs/heads/main by this push:
new 06a4a21c chore(ci): Migrate the ci from macOS 12 to macOS 13 (#1927)
06a4a21c is described below
commit 06a4a21c29c25ad45fb228daecd01698ed672d31
Author: penguin_wwy <[email protected]>
AuthorDate: Tue Nov 5 17:10:50 2024 +0800
chore(ci): Migrate the ci from macOS 12 to macOS 13 (#1927)
## What does this PR do?
macos-12 is being deprecated
https://github.com/actions/runner-images/issues/10721
Replacing it with macos-13 which also runs on x86-64
## Related issues
## Does this PR introduce any user-facing change?
- [ ] Does this PR introduce any public API change?
- [ ] Does this PR introduce any binary protocol compatibility change?
## Benchmark
---
.github/workflows/ci.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index fa2d3e92..1574138f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -185,7 +185,7 @@ jobs:
name: Rust CI
strategy:
matrix:
- os: [ubuntu-latest, macos-12, macos-14] # macos-12: x86, macos-14:
arm64
+ os: [ubuntu-latest, macos-13, macos-14] # macos-13: x86, macos-14:
arm64
runs-on: ${{ matrix.os }}
timeout-minutes: 45
steps:
@@ -201,7 +201,7 @@ jobs:
name: C++ CI
strategy:
matrix:
- os: [ubuntu-latest, macos-12, macos-14, windows-2022] # macos-12: x86,
macos-14: arm64
+ os: [ubuntu-latest, macos-13, macos-14, windows-2022] # macos-13: x86,
macos-14: arm64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]