mirror of https://github.com/python/cpython
gh-111062: Reusable Windows build that supports free-threaded mode as the conditional CI (#111493)
* gh-111062 Set up free-threaded CI for windows
Co-authored-by: Donghee Na <donghee.na@python.org>
* Apply suggestions from code review
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
* Update
* Update names
* Add files
* Update
* Revert "Update"
This reverts commit 4f17e1af0d
.
* fix
---------
Co-authored-by: juanjose.tenorio <juanjose2611@gmail.com>
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
This commit is contained in:
parent
c6def360d1
commit
4ebf2fae96
|
@ -178,56 +178,19 @@ jobs:
|
||||||
if: github.event_name == 'pull_request' # $GITHUB_EVENT_NAME
|
if: github.event_name == 'pull_request' # $GITHUB_EVENT_NAME
|
||||||
run: make check-c-globals
|
run: make check-c-globals
|
||||||
|
|
||||||
build_win32:
|
build_windows:
|
||||||
name: 'Windows (x86)'
|
name: 'Windows'
|
||||||
runs-on: windows-latest
|
|
||||||
timeout-minutes: 60
|
|
||||||
needs: check_source
|
needs: check_source
|
||||||
if: needs.check_source.outputs.run_tests == 'true'
|
if: needs.check_source.outputs.run_tests == 'true'
|
||||||
env:
|
uses: ./.github/workflows/reusable-build-windows.yml
|
||||||
IncludeUwp: 'true'
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Build CPython
|
|
||||||
run: .\PCbuild\build.bat -e -d -p Win32
|
|
||||||
- name: Display build info
|
|
||||||
run: .\python.bat -m test.pythoninfo
|
|
||||||
- name: Tests
|
|
||||||
run: .\PCbuild\rt.bat -p Win32 -d -q --fast-ci
|
|
||||||
|
|
||||||
build_win_amd64:
|
build_windows_free_threaded:
|
||||||
name: 'Windows (x64)'
|
name: 'Windows (free-threaded)'
|
||||||
runs-on: windows-latest
|
|
||||||
timeout-minutes: 60
|
|
||||||
needs: check_source
|
needs: check_source
|
||||||
if: needs.check_source.outputs.run_tests == 'true'
|
if: needs.check_source.outputs.run_tests == 'true' && contains(github.event.pull_request.labels.*.name, 'topic-free-threaded')
|
||||||
env:
|
uses: ./.github/workflows/reusable-build-windows.yml
|
||||||
IncludeUwp: 'true'
|
with:
|
||||||
steps:
|
free-threaded: true
|
||||||
- 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 -d -p x64
|
|
||||||
- name: Display build info
|
|
||||||
run: .\python.bat -m test.pythoninfo
|
|
||||||
- name: Tests
|
|
||||||
run: .\PCbuild\rt.bat -p x64 -d -q --fast-ci
|
|
||||||
|
|
||||||
build_win_arm64:
|
|
||||||
name: 'Windows (arm64)'
|
|
||||||
runs-on: windows-latest
|
|
||||||
timeout-minutes: 60
|
|
||||||
needs: check_source
|
|
||||||
if: needs.check_source.outputs.run_tests == 'true'
|
|
||||||
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 -d -p arm64
|
|
||||||
|
|
||||||
build_macos:
|
build_macos:
|
||||||
name: 'macOS'
|
name: 'macOS'
|
||||||
|
@ -537,9 +500,7 @@ jobs:
|
||||||
- check_source # Transitive dependency, needed to access `run_tests` value
|
- check_source # Transitive dependency, needed to access `run_tests` value
|
||||||
- check-docs
|
- check-docs
|
||||||
- check_generated_files
|
- check_generated_files
|
||||||
- build_win32
|
- build_windows
|
||||||
- build_win_amd64
|
|
||||||
- build_win_arm64
|
|
||||||
- build_macos
|
- build_macos
|
||||||
- build_ubuntu
|
- build_ubuntu
|
||||||
- build_ubuntu_free_threaded
|
- build_ubuntu_free_threaded
|
||||||
|
|
|
@ -0,0 +1,53 @@
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
free-threaded:
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_win32:
|
||||||
|
name: 'build and test (x86)'
|
||||||
|
runs-on: windows-latest
|
||||||
|
timeout-minutes: 60
|
||||||
|
env:
|
||||||
|
IncludeUwp: 'true'
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Build CPython
|
||||||
|
run: .\PCbuild\build.bat -e -d -p Win32 ${{ inputs.free-threaded && '--disable-gil' || '' }}
|
||||||
|
- name: Display build info
|
||||||
|
run: .\python.bat -m test.pythoninfo
|
||||||
|
- name: Tests
|
||||||
|
run: .\PCbuild\rt.bat -p Win32 -d -q --fast-ci
|
||||||
|
|
||||||
|
build_win_amd64:
|
||||||
|
name: 'build and test (x64)'
|
||||||
|
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 -d -p x64 ${{ inputs.free-threaded && '--disable-gil' || '' }}
|
||||||
|
- name: Display build info
|
||||||
|
run: .\python.bat -m test.pythoninfo
|
||||||
|
- name: Tests
|
||||||
|
run: .\PCbuild\rt.bat -p x64 -d -q --fast-ci
|
||||||
|
|
||||||
|
build_win_arm64:
|
||||||
|
name: 'build (arm64)'
|
||||||
|
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 -d -p arm64 ${{ inputs.free-threaded && '--disable-gil' || '' }}
|
Loading…
Reference in New Issue