Skip to content

Commit 71c1f0a

Browse files
committed
pyenv action
1 parent 05116ee commit 71c1f0a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/triton-benchmarks.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,10 @@ on:
2929
type: string
3030
default: "[]"
3131
use_pyenv_python:
32-
description: Use system Python
32+
description: Use Python built with pyenv
3333
type: boolean
3434
default: false
35+
3536
schedule:
3637
- cron: "5 23 * * *"
3738
pull_request:
@@ -75,6 +76,12 @@ jobs:
7576
uses: actions/setup-python@v5
7677
with:
7778
python-version: ${{ env.PYTHON_VERSION }}
79+
80+
- name: Install Python (from pyenv) ${{ inputs.python_version }}
81+
if: ${{ inputs.use_pyenv_python }}
82+
uses: ./.github/actions/setup-pyenv-python
83+
with:
84+
python-version: ${{ inputs.python_version }}
7885

7986
- name: Identify Python version
8087
run: |

0 commit comments

Comments
 (0)