File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 4
4
config_hash :
5
5
required : true
6
6
type : string
7
- free-threaded :
7
+ free-threading :
8
8
required : false
9
9
type : boolean
10
10
default : false
35
35
./configure \
36
36
--config-cache \
37
37
--with-pydebug \
38
- ${{ inputs.free-threaded && '--disable-gil' || '' }} \
38
+ ${{ inputs.free-threading && '--disable-gil' || '' }} \
39
39
--prefix=/opt/python-dev \
40
40
--with-openssl="$(brew --prefix [email protected] )"
41
41
- name : Build CPython
Original file line number Diff line number Diff line change 1
1
on :
2
2
workflow_call :
3
3
inputs :
4
- free-threaded :
4
+ free-threading :
5
5
required : false
6
6
type : boolean
7
7
default : false
16
16
steps :
17
17
- uses : actions/checkout@v4
18
18
- name : Build CPython
19
- run : .\PCbuild\build.bat -e -d -p Win32 ${{ inputs.free-threaded && '--disable-gil' || '' }}
19
+ run : .\PCbuild\build.bat -e -d -p Win32 ${{ inputs.free-threading && '--disable-gil' || '' }}
20
20
- name : Display build info
21
21
run : .\python.bat -m test.pythoninfo
22
22
- name : Tests
33
33
- name : Register MSVC problem matcher
34
34
run : echo "::add-matcher::.github/problem-matchers/msvc.json"
35
35
- name : Build CPython
36
- run : .\PCbuild\build.bat -e -d -p x64 ${{ inputs.free-threaded && '--disable-gil' || '' }}
36
+ run : .\PCbuild\build.bat -e -d -p x64 ${{ inputs.free-threading && '--disable-gil' || '' }}
37
37
- name : Display build info
38
38
run : .\python.bat -m test.pythoninfo
39
39
- name : Tests
50
50
- name : Register MSVC problem matcher
51
51
run : echo "::add-matcher::.github/problem-matchers/msvc.json"
52
52
- name : Build CPython
53
- run : .\PCbuild\build.bat -e -d -p arm64 ${{ inputs.free-threaded && '--disable-gil' || '' }}
53
+ run : .\PCbuild\build.bat -e -d -p arm64 ${{ inputs.free-threading && '--disable-gil' || '' }}
You can’t perform that action at this time.
0 commit comments