We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66bea25 commit 49c017fCopy full SHA for 49c017f
.github/workflows/build.yml
@@ -214,6 +214,22 @@ 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: contains(github.event.pull_request.labels.*.name, 'topic-free-threaded')
220
+ runs-on: windows-latest
221
+ timeout-minutes: 60
222
+ env:
223
+ IncludeUwp: 'true'
224
+ steps:
225
+ - uses: actions/checkout@v4
226
+ - name: Register MSVC problem matcher
227
+ run: echo "::add-matcher::.github/problem-matchers/msvc.json"
228
+ - name: Build CPython
229
+ run: .\PCbuild\build.bat -e --disable-gil -d -p x64
230
+ - name: Display build info
231
+ run: .\python.bat -m test.pythoninfo
232
+
233
build_win_arm64:
234
name: 'Windows (arm64)'
235
runs-on: windows-latest
0 commit comments