Skip to content

Commit

Permalink
pythongh-111062: Add free-threaded CI for Windows(x86)
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed Oct 29, 2023
1 parent 66bea25 commit 7cb8fc7
Showing 1 changed file with 16 additions and 0 deletions.
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'
runs-on: windows-latest
timeout-minutes: 60
if: github.event.label.name == 'topic-free-threaded'

This comment has been minimized.

Copy link
@dimaqq

dimaqq Oct 29, 2023

You want something like if: contains(github.event.pull_request.labels.*.name, 'my-specific-label')

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

0 comments on commit 7cb8fc7

Please sign in to comment.