Skip to content

Commit 48ac8ce

Browse files
authored
chore(ci): Run turbopack benchmark from custom runners (#79979)
### What? User the custom runner for turbopack benchmarks ### Why? Turbopack is very parallel so it's better to use custom runners which has more CPU cores.
1 parent edd0973 commit 48ac8ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/turbopack-benchmark.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ env:
3232
jobs:
3333
benchmark-tiny:
3434
name: Benchmark Rust Crates (tiny)
35-
runs-on: ubuntu-22.04
35+
runs-on: ['self-hosted', 'linux', 'x64', 'metal']
3636
steps:
3737
- uses: actions/checkout@v4
3838

@@ -55,7 +55,7 @@ jobs:
5555

5656
benchmark-small-apps:
5757
name: Benchmark Rust Crates (small apps)
58-
runs-on: ubuntu-22.04
58+
runs-on: ['self-hosted', 'linux', 'x64', 'metal']
5959
steps:
6060
- uses: actions/checkout@v4
6161

@@ -94,7 +94,7 @@ jobs:
9494
name: Benchmark Rust Crates (large)
9595
# If the task is triggered manually, we want to run the large benchmarks
9696
if: ${{ github.event_name == 'workflow_dispatch' }}
97-
runs-on: ubuntu-22.04
97+
runs-on: ['self-hosted', 'linux', 'x64', 'metal']
9898
steps:
9999
- uses: actions/checkout@v4
100100

0 commit comments

Comments
 (0)