This is an automated email from the ASF dual-hosted git repository. chaokunyang pushed a commit to branch releases-0.10 in repository https://gitbox.apache.org/repos/asf/fury.git
commit e0f1efde624865587c08dc37b20427a93a93f05b 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]
