Skip to content

Commit 1bc64dd

Browse files
authored
Fix profiling tests on Windows ARM64 (#959)
1 parent a46a2c6 commit 1bc64dd

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/profile.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,24 +38,24 @@ jobs:
3838
- name: Load environment file
3939
uses: ./.github/actions/load-env
4040

41+
- name: Fetch latest supported Python
42+
if: inputs.python == ''
43+
id: latest-supported-python
44+
uses: ./.github/actions/latest-supported-python
45+
with:
46+
github-token: "${{ github.token }}"
47+
4148
- name: Install Python
4249
uses: actions/setup-python@v6
4350
with:
44-
python-version-file: pyproject.toml
51+
python-version: "${{ inputs.python || steps.latest-supported-python.outputs.version }}"
4552

4653
- name: Install uv
4754
uses: astral-sh/setup-uv@v7
4855

4956
- name: Install command runner
5057
run: uv tool install rust-just
5158

52-
- name: Fetch latest supported Python
53-
if: inputs.python == ''
54-
id: latest-supported-python
55-
uses: ./.github/actions/latest-supported-python
56-
with:
57-
github-token: "${{ github.token }}"
58-
5959
- name: Set profiling environment metadata
6060
id: metadata
6161
shell: bash

0 commit comments

Comments
 (0)