Skip to content

Commit bfdd71c

Browse files
committed
chore(ci): remove macOS x86_64 from test matrix
- Remove Intel macOS configuration from CI - Drop macos-x86_64 from architecture matrix - Update platform documentation for supported systems
1 parent dab3200 commit bfdd71c

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
# 架构配置标识符
26-
arch_config: [linux-x86_64, linux-aarch64, macos-x86_64, macos-arm64, windows-x86_64]
26+
arch_config: [linux-x86_64, linux-aarch64, macos-arm64, windows-x86_64]
2727
# 定时任务只测试 master 版本,其他情况测试所有版本
2828
version: ${{ github.event_name == 'schedule' && fromJSON('["master"]') || fromJSON('["0.14.1", "0.15.1", "master"]') }}
2929
include:
@@ -37,11 +37,6 @@ jobs:
3737
os: ubuntu-latest
3838
arch: aarch64
3939
runner: ubuntu-24.04-arm
40-
# macOS x86_64
41-
- arch_config: macos-x86_64
42-
os: macos-latest
43-
arch: x86_64
44-
runner: macos-13
4540
# macOS arm64
4641
- arch_config: macos-arm64
4742
os: macos-latest

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ This library is tested and optimized for all major platforms and architectures:
2626
| Platform | Architecture | CI Status | SIMD Optimizations |
2727
|----------|--------------|-----------|-------------------|
2828
| **Windows** | x86_64 | ✅ Tested | SSE2/AVX2 prefetch |
29-
| **macOS** | x86_64 (Intel) | ✅ Tested | SSE2/AVX2 prefetch |
3029
| **macOS** | ARM64 (Apple Silicon) | ✅ Tested | ARM NEON + PRFM |
3130
| **Linux** | x86_64 | ✅ Tested | SSE2/AVX2 prefetch |
3231
| **Linux** | ARM64/aarch64 | ✅ Tested | ARM NEON + PRFM |

README_CN.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ Zig 编程语言的 MessagePack 实现。此库提供了一种简单高效的方
2626
| 平台 | 架构 | CI 状态 | SIMD 优化 |
2727
|----------|--------------|-----------|-------------------|
2828
| **Windows** | x86_64 | ✅ 已测试 | SSE2/AVX2 预取 |
29-
| **macOS** | x86_64 (Intel) | ✅ 已测试 | SSE2/AVX2 预取 |
3029
| **macOS** | ARM64 (Apple Silicon) | ✅ 已测试 | ARM NEON + PRFM |
3130
| **Linux** | x86_64 | ✅ 已测试 | SSE2/AVX2 预取 |
3231
| **Linux** | ARM64/aarch64 | ✅ 已测试 | ARM NEON + PRFM |

0 commit comments

Comments
 (0)