mirror of
https://github.com/python/cpython.git
synced 2025-09-30 20:31:52 +00:00
Add files
This commit is contained in:
parent
5451d22cc7
commit
0103ca4d97
1 changed files with 53 additions and 0 deletions
53
.github/workflows/reusable-build-windows.yml
vendored
Normal file
53
.github/workflows/reusable-build-windows.yml
vendored
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
free-threaded:
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_win_32:
|
||||||
|
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…
Add table
Add a link
Reference in a new issue