docs: add build environments section to README

- Add table listing all build platforms and their configurations
- Document runner types (GitHub-hosted, Self-hosted, AWS CodeBuild)
- Show container images used for each platform
- Include Linux x86_64, Linux ARM64, and Windows x86_64 environments
This commit is contained in:
Junya Morioka
2025-12-21 04:10:36 +09:00
parent 2f3b1245f7
commit f1e5f1ed5b
+12
View File
@@ -238,3 +238,15 @@ gh api \
-X POST \
/repos/[OWNER]/[REPOSITORY]/actions/runners/registration-token
```
## Build Environments
This repository builds wheels across multiple platforms and environments:
| Platform | Runner Type | Container Image |
| ------------------ | ------------------------------ | ------------------------------------------ |
| **Linux x86_64** | GitHub-hosted (`ubuntu-22.04`) | - |
| **Linux x86_64** | Self-hosted | `ubuntu:22.04` or `manylinux_2_28_x86_64` |
| **Linux ARM64** | Self-hosted (`linux/arm64`) | `ubuntu:22.04` or `manylinux_2_28_aarch64` |
| **Windows x86_64** | GitHub-hosted (`windows-2022`) | - |
| **Windows x86_64** | AWS CodeBuild | - |