Skip to content

Commit b8f3305

Browse files
authored
Don't use setup-python action for benchmarks (#5287)
At the moment `actions/setup-python@v6` can't be used on 25.04 systems. Signed-off-by: Anatoly Myachev <[email protected]>
1 parent 9749549 commit b8f3305

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

.github/workflows/triton-benchmarks.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@ on:
3939
description: JSON list of benchmarks to skip
4040
type: string
4141
default: "[]"
42-
use_pyenv_python:
43-
description: Use Python built with pyenv
44-
type: boolean
45-
default: false
4642

4743
# This workflow is also called from workflows triton-benchmarks-*.yml.
4844
workflow_call:
@@ -89,14 +85,7 @@ jobs:
8985
- name: Checkout repository
9086
uses: actions/checkout@v5
9187

92-
- name: Install Python
93-
if: ${{ !(inputs.use_pyenv_python || false) }}
94-
uses: actions/setup-python@v6
95-
with:
96-
python-version: ${{ env.PYTHON_VERSION }}
97-
9888
- name: Install Python (from pyenv) ${{ inputs.python_version }}
99-
if: ${{ inputs.use_pyenv_python }}
10089
uses: ./.github/actions/setup-pyenv-python
10190
with:
10291
python-version: ${{ env.PYTHON_VERSION }}

0 commit comments

Comments
 (0)