Skip to content

Commit 1e16e55

Browse files
authored
chore(ci): remove macos13 ci for rust/c++ (#2817)
## Why? <!-- Describe the purpose of this PR. --> ## What does this PR do? remove macos13 ci for rust/c++ since it's too slow, and github action will remove it recently ## Related issues <!-- Is there any related issue? If this PR closes them you say say fix/closes: - #xxxx0 - #xxxx1 - Fixes #xxxx2 --> ## Does this PR introduce any user-facing change? <!-- If any user-facing interface changes, please [open an issue](https://github.com/apache/fory/issues/new/choose) describing the need to do so and update the document if necessary. Delete section if not applicable. --> - [ ] Does this PR introduce any public API change? - [ ] Does this PR introduce any binary protocol compatibility change? ## Benchmark <!-- When the PR has an impact on performance (if you don't know whether the PR will have an impact on performance, you can submit the PR first, and if it will have impact on performance, the code reviewer will explain it), be sure to attach a benchmark data here. Delete section if not applicable. -->
1 parent ab13873 commit 1e16e55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ jobs:
288288
name: Rust CI
289289
strategy:
290290
matrix:
291-
os: [ubuntu-latest, macos-13, macos-14] # macos-13: x86, macos-14: arm64
291+
os: [ubuntu-latest, macos-14, macos-latest] # macos-14: arm64
292292
runs-on: ${{ matrix.os }}
293293
timeout-minutes: 45
294294
steps:
@@ -316,7 +316,7 @@ jobs:
316316
name: C++ CI
317317
strategy:
318318
matrix:
319-
os: [ubuntu-latest, macos-13, macos-14, windows-2022] # macos-13: x86, macos-14: arm64
319+
os: [ubuntu-latest, macos-14, macos-latest, windows-2022] # macos-13: x86, macos-14: arm64
320320
runs-on: ${{ matrix.os }}
321321
steps:
322322
- uses: actions/checkout@v5

0 commit comments

Comments
 (0)