Skip to content

Commit 4d97e22

Browse files
authored
chore: avoid AWS machines for now in benchmark actions (#2354)
1 parent e31512d commit 4d97e22

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/bench-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
name: Random Access
5858
- id: compress
5959
name: Vortex Compression
60-
runs-on: self-hosted
60+
runs-on: [self-hosted, gcp]
6161
if: ${{ contains(github.event.head_commit.message, '[benchmark]') || github.event.label.name == 'benchmark' && github.event_name == 'pull_request' }}
6262
steps:
6363
- uses: actions/checkout@v4
@@ -127,7 +127,7 @@ jobs:
127127
comment-tag: bench-pr-comment-${{ matrix.benchmark.id }}
128128
tpch:
129129
needs: label_trigger
130-
runs-on: self-hosted
130+
runs-on: [self-hosted, gcp]
131131
steps:
132132
- uses: actions/checkout@v4
133133
- uses: ./.github/actions/cleanup
@@ -183,7 +183,7 @@ jobs:
183183
comment-tag: bench-pr-comment-tpch
184184
clickbench:
185185
needs: label_trigger
186-
runs-on: self-hosted
186+
runs-on: [self-hosted, gcp]
187187
steps:
188188
- uses: actions/checkout@v4
189189
- uses: ./.github/actions/cleanup

.github/workflows/bench.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
name: Random Access
6464
- id: compress
6565
name: Vortex Compression
66-
runs-on: self-hosted
66+
runs-on: [self-hosted, gcp]
6767
steps:
6868
- uses: actions/checkout@v4
6969
- uses: ./.github/actions/cleanup
@@ -110,7 +110,7 @@ jobs:
110110
run: |
111111
bash scripts/cat-s3.sh vortex-benchmark-results-database data.json ${{ matrix.benchmark.id }}.json
112112
tpch:
113-
runs-on: self-hosted
113+
runs-on: [self-hosted, gcp]
114114
steps:
115115
- uses: actions/checkout@v4
116116
- uses: ./.github/actions/cleanup
@@ -145,7 +145,7 @@ jobs:
145145
run: |
146146
bash scripts/cat-s3.sh vortex-benchmark-results-database data.json tpch.json
147147
clickbench:
148-
runs-on: self-hosted
148+
runs-on: [self-hosted, gcp]
149149
steps:
150150
- uses: actions/checkout@v4
151151
- uses: ./.github/actions/cleanup

0 commit comments

Comments
 (0)