From 49c017f08b9f83117e003af39931734e7c0e0fab Mon Sep 17 00:00:00 2001 From: Donghee Na Date: Sun, 29 Oct 2023 11:39:04 +0900 Subject: [PATCH] gh-111062: Add free-threaded CI for Windows(x86) --- .github/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3373a0616b66c4..d710eefcc0754e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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