Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,22 @@ jobs:
- name: Tests
run: .\PCbuild\rt.bat -p x64 -d -q --fast-ci

build_win_amd64_free_threaded:
name: 'Windows (x64): Free Threaded'
if: contains(github.event.pull_request.labels.*.name, 'topic-free-threaded')
runs-on: windows-latest
timeout-minutes: 60
env:
IncludeUwp: 'true'
steps:
- uses: actions/checkout@v4
- name: Register MSVC problem matcher
run: echo "::add-matcher::.github/problem-matchers/msvc.json"
- name: Build CPython
run: .\PCbuild\build.bat -e --disable-gil -d -p x64
- name: Display build info
run: .\python.bat -m test.pythoninfo

build_win_arm64:
name: 'Windows (arm64)'
runs-on: windows-latest
Expand Down