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 44 config_hash :
55 required : true
66 type : string
7- free-threaded :
7+ free-threading :
88 required : false
99 type : boolean
1010 default : false
3535 ./configure \
3636 --config-cache \
3737 --with-pydebug \
38- ${{ inputs.free-threaded && '--disable-gil' || '' }} \
38+ ${{ inputs.free-threading && '--disable-gil' || '' }} \
3939 --prefix=/opt/python-dev \
4040 --with-openssl="$(brew --prefix [email protected] )" 4141 - name : Build CPython
Original file line number Diff line number Diff line change 11on :
22 workflow_call :
33 inputs :
4- free-threaded :
4+ free-threading :
55 required : false
66 type : boolean
77 default : false
1616 steps :
1717 - uses : actions/checkout@v4
1818 - 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' || '' }}
2020 - name : Display build info
2121 run : .\python.bat -m test.pythoninfo
2222 - name : Tests
3333 - name : Register MSVC problem matcher
3434 run : echo "::add-matcher::.github/problem-matchers/msvc.json"
3535 - 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' || '' }}
3737 - name : Display build info
3838 run : .\python.bat -m test.pythoninfo
3939 - name : Tests
5050 - name : Register MSVC problem matcher
5151 run : echo "::add-matcher::.github/problem-matchers/msvc.json"
5252 - 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