diff options
author | Donghee Na <donghee.na@python.org> | 2024-01-02 13:04:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-02 13:04:11 (GMT) |
commit | 9beb56594db36eab985f1fa05385eb34fae178ac (patch) | |
tree | 8d0221d719f7d07cc7a7b6ae026c64c73c7e9eba /.github | |
parent | 035b6eb9878707413c5fab5e3dcc93f3e3261cd0 (diff) | |
download | cpython-9beb56594db36eab985f1fa05385eb34fae178ac.zip cpython-9beb56594db36eab985f1fa05385eb34fae178ac.tar.gz cpython-9beb56594db36eab985f1fa05385eb34fae178ac.tar.bz2 |
[3.11] Use the official term "free-threading" for GitHub Action (g… (#113647)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/reusable-macos.yml | 4 | ||||
-rw-r--r-- | .github/workflows/reusable-windows.yml | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/reusable-macos.yml b/.github/workflows/reusable-macos.yml index 3ed8303a..db42ced 100644 --- a/.github/workflows/reusable-macos.yml +++ b/.github/workflows/reusable-macos.yml @@ -4,7 +4,7 @@ on: config_hash: required: true type: string - free-threaded: + free-threading: required: false type: boolean default: false @@ -35,7 +35,7 @@ jobs: ./configure \ --config-cache \ --with-pydebug \ - ${{ inputs.free-threaded && '--disable-gil' || '' }} \ + ${{ inputs.free-threading && '--disable-gil' || '' }} \ --prefix=/opt/python-dev \ --with-openssl="$(brew --prefix openssl@3.0)" - name: Build CPython diff --git a/.github/workflows/reusable-windows.yml b/.github/workflows/reusable-windows.yml index 98fb7cf..41f2c2b 100644 --- a/.github/workflows/reusable-windows.yml +++ b/.github/workflows/reusable-windows.yml @@ -1,7 +1,7 @@ on: workflow_call: inputs: - free-threaded: + free-threading: required: false type: boolean default: false @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Build CPython - run: .\PCbuild\build.bat -e -d -p Win32 ${{ inputs.free-threaded && '--disable-gil' || '' }} + run: .\PCbuild\build.bat -e -d -p Win32 ${{ inputs.free-threading && '--disable-gil' || '' }} - name: Display build info run: .\python.bat -m test.pythoninfo - name: Tests @@ -33,7 +33,7 @@ jobs: - 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' || '' }} + run: .\PCbuild\build.bat -e -d -p x64 ${{ inputs.free-threading && '--disable-gil' || '' }} - name: Display build info run: .\python.bat -m test.pythoninfo - name: Tests @@ -50,4 +50,4 @@ jobs: - 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' || '' }} + run: .\PCbuild\build.bat -e -d -p arm64 ${{ inputs.free-threading && '--disable-gil' || '' }} |