kick reusable-windows #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Manual Windows | ||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| arch: | ||
| description: CPU architecture | ||
| required: true | ||
| type: choice | ||
| options: | ||
| - x86 | ||
| - x64 | ||
| - arm64 | ||
| free-threading: | ||
| description: Whether to compile CPython in free-threading mode | ||
| required: false | ||
| type: boolean | ||
| default: false | ||
| env: | ||
| FORCE_COLOR: 1 | ||
| jobs: | ||
| build-windows: | ||
| uses: ./.github/workflows/reusable-windows.yml | ||
| with: | ||
| arch: ${{ inputs.arch }} | ||
| free-threading: ${{ inputs.free-threading }} | ||