We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05116ee commit 71c1f0aCopy full SHA for 71c1f0a
.github/workflows/triton-benchmarks.yml
@@ -29,9 +29,10 @@ on:
29
type: string
30
default: "[]"
31
use_pyenv_python:
32
- description: Use system Python
+ description: Use Python built with pyenv
33
type: boolean
34
default: false
35
+
36
schedule:
37
- cron: "5 23 * * *"
38
pull_request:
@@ -75,6 +76,12 @@ jobs:
75
76
uses: actions/setup-python@v5
77
with:
78
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 }}
85
86
- name: Identify Python version
87
run: |
0 commit comments