Skip to content

Commit fe0a074

Browse files
authored
infra: fix for benchmark CI (#4723)
* Update benchmarks.yml * Update benchmarks.yml * Update benchmarks.yml * Update benchmarks.yml * Update benchmarks.yml * Update benchmarks.yml * Update benchmarks.yml * Update benchmarks.yml * Update benchmarks.yml * Update benchmarks.yml
1 parent b1cf152 commit fe0a074

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/benchmarks.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,17 @@ jobs:
1212
permissions:
1313
contents: write # required for pushing to gh-pages
1414
runs-on: oracle-bare-metal-64cpu-512gb-x86-64
15+
container:
16+
image: python:3.13-slim
1517
steps:
18+
- name: Install Git # since Git isn't available in the container image used above
19+
run: |
20+
apt-get update
21+
apt-get install -y git
22+
- name: Make repo safe for Git inside container
23+
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
1624
- name: Checkout Core Repo @ SHA - ${{ github.sha }}
1725
uses: actions/checkout@v4
18-
- name: Set up Python
19-
uses: actions/setup-python@v5
20-
with:
21-
python-version: "3.13"
22-
architecture: 'x64'
2326
- name: Install tox
2427
run: pip install tox-uv
2528
- name: Run tox

0 commit comments

Comments
 (0)