We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66bea25 commit 8323afdCopy full SHA for 8323afd
.github/workflows/build.yml
@@ -214,6 +214,20 @@ jobs:
214
- name: Tests
215
run: .\PCbuild\rt.bat -p x64 -d -q --fast-ci
216
217
+ build_win_amd64_free_threaded:
218
+ name: 'Windows (x64): Free Threaded'
219
+ if: ${{ github.event.label.name == 'topic-free-threaded' }}
220
+ env:
221
+ IncludeUwp: 'true'
222
+ steps:
223
+ - uses: actions/checkout@v4
224
+ - name: Register MSVC problem matcher
225
+ run: echo "::add-matcher::.github/problem-matchers/msvc.json"
226
+ - name: Build CPython
227
+ run: .\PCbuild\build.bat -e --disable-gil -d -p x64
228
+ - name: Display build info
229
+ run: .\python.bat -m test.pythoninfo
230
+
231
build_win_arm64:
232
name: 'Windows (arm64)'
233
runs-on: windows-latest
0 commit comments