GitHub Actions Windows ARM64 wheel builder
GitHub Actions Windows ARM64 wheel builder is an code AI skill with a core value of Adds native Windows ARM64 wheel builds and tests to a Python package's existing GitHub Actions workflows using the 'windows-11-arm' runner. It
helps developers solve real-world problems in the code domain, boosting
efficiency, automating repetitive tasks, and optimizing workflows.
Adds native Windows ARM64 wheel builds and tests to a Python package's existing GitHub Actions workflows using the 'windows-11-arm' runner.
Quick Facts
mkdir -p ./skills/python-win-arm64-gha-wheel-builder && curl -sfL https://raw.githubusercontent.com/github/awesome-copilot/main/skills/python-win-arm64-gha-wheel-builder/SKILL.md -o ./skills/python-win-arm64-gha-wheel-builder/SKILL.md Run in terminal / PowerShell. Requires curl (Unix) or PowerShell 5+ (Windows).
Skill Content
# GitHub Actions Windows ARM64 wheel builder
You are a CI/CD specialist. Your task is to add a native Windows ARM64 wheel
build to this repository's GitHub Actions build/release workflow using the
`windows-11-arm` runner image.
Context
Many Python package repositories use GitHub Actions workflows to produce
platform wheels for PyPI. Common targets include Linux x86_64/aarch64, macOS
(universal2 or separate x86_64/arm64), and Windows AMD64 — but Windows ARM64
is often missing.
GitHub now provides a native `windows-11-arm` runner that can build ARM64
Windows wheels without cross-compilation.
Pre-flight Checks
Before modifying the workflow, verify the following:
cibuildwheel version (if applicable)
If the workflow uses `cibuildwheel`, native `win_arm64` support requires
cibuildwheel ≥ 2.11.2. If the workflow pins an older version (e.g. in
`requirements-dev.txt` or the action's `version` input), update it to a
compatible release before proceeding.
Python version support
Not all Python versions have Windows ARM64 wheels available. Check the
documentation for the specific build tool used (e.g. cibuildwheel, maturin,
raw pip) to determine the minimum supported Python version for `win_arm64`.
When constructing the ARM64 matrix entries, omit Python versions that are not
supported — attempting to build unsupported versions will fail. Prefer
updating targeted `strategy.exclude` entries or conditional matrix rules rather
than broad changes that alter the supported AMD64 set. Do not assume the same
Python version range used for Windows AMD64 is valid for ARM64.
Instructions
1. Locate the build workflow
Find the GitHub Actions workflow file that builds wheels (commonly
`.github/workflows/build.yml` or similar). Look for jobs that invoke
`cibuildwheel` or otherwise produce `.whl` artifacts.
Some repositories wrap the real build logic in a reusable workflow
(`workflow_call`) or a composite action under `.github/actions/`. Trace through
those indirections and update the actual source of the wheel-building logic,
not just the thin wrapper workflow.
If the repository already contains a Windows ARM64 entry or job, do not add a
duplicate. Instead, normalize or fix the existing configuration so it uses the
correct runner and architecture-specific settings.
2. Add a Windows ARM64 entry to the build matrix
If the workflow uses separate jobs per platform rather than a strategy matrix,
create a Windows ARM64 sibling job by copying the existing Windows AMD64 job
and changing only the platform-specific fields.
In the strategy matrix of the wheel-building job, add a new entry for Windows
ARM64. Follow the naming conventions already used in the matrix (e.g., if
existing entries use identifiers like `win_amd64`, `manylinux_x86_64`, etc.,
choose a consistent name such as `win_arm64`).
If the workflow already uses `strategy.exclude` or similar conditional logic,
update those rules so unsupported Windows ARM64 and Python combinations are
excluded explicitly without affecting the existing supported platforms.
**`CIBW_BUILD` filter:** If the workflow sets `CIBW_BUILD` to an explicit
allow-list of wheel tags (e.g. `cp39-win_amd64 cp310-win_amd64 ...`), the
ARM64 entries must be added to that list as well (e.g. `cp39-win_arm64
cp310-win_arm64 ...`). Without this, cibuildwheel will silently skip the
ARM64 wheels even when running on the correct runner. Use a matrix variable or
conditional expression to set the appropriate value per platform so existing
AMD64 entries are unaffected.
3. Map the new entry to the `windows-11-arm` runner
Ensure the new matrix entry resolves to the `windows-11-arm` runner. Follow
the same pattern the workflow already uses to map matrix entries to runner
labels (e.g., via `include` blocks, conditional expressions, or direct `os`
values in the matrix).
**Reuse the existing matrix variable:** If the runner image passed to
`runs-on` for the Windows AMD64/x64 build is supplied through a matrix
🎯 Best For
- QA engineers
- Developers writing unit tests
- UI designers
- Product designers
- Claude users
💡 Use Cases
- Generating test cases for edge conditions
- Writing integration test suites
- Generating component mockups
- Creating design system tokens
📖 How to Use This Skill
- 1
Install the Skill
Copy the install command from the Terminal tab and run it. The SKILL.md file downloads to your local skills directory.
- 2
Load into Your AI Assistant
Open Claude or GitHub Copilot and reference the skill. Paste the SKILL.md content or use the system prompt tab.
- 3
Apply GitHub Actions Windows ARM64 wheel builder to Your Work
Open your project in the AI assistant and ask it to apply the skill. Start with a small module to verify the output quality.
- 4
Review and Refine
Review AI suggestions before committing. Run tests, check for regressions, and iterate on the skill output.
❓ Frequently Asked Questions
Does this generate test mocks?
Many testing skills include mock generation. Check the install command and skill content for details.
Does this work with Figma?
Some design skills integrate with Figma plugins. Check the Works With section for supported tools.
Is GitHub Actions Windows ARM64 wheel builder compatible with Cursor and VS Code?
Yes — this skill works with any AI coding assistant including Cursor, VS Code with Copilot, and JetBrains IDEs.
Do I need specific dependencies for GitHub Actions Windows ARM64 wheel builder?
Check the install command and Works With section. Most code skills only require the AI assistant and your codebase.
How do I install GitHub Actions Windows ARM64 wheel builder?
Copy the install command from the Terminal tab and run it. The skill downloads to ./skills/python-win-arm64-gha-wheel-builder/SKILL.md, ready to use.
⚠️ Common Mistakes to Avoid
Not testing edge cases
AI tends to generate happy-path tests. Manually review for boundary conditions.
Skipping usability testing
AI-generated designs should be validated with real users before development.
Skipping validation
Always test AI-generated code changes, even for simple refactors.
Missing dependency updates
Check if the skill requires updated dependencies or new packages.