Skip to content

Commit f10ca23

Browse files
committed
workflows: update names of GitHub Action runner groups
These are the new-style names that will make it easier to migrate to Ubuntu 22.04+ when the time comes.
1 parent ec1b1c6 commit f10ca23

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/github-actions-essential-ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ concurrency:
5353
cancel-in-progress: true
5454
jobs:
5555
acceptance:
56-
runs-on: [self-hosted, basic_big_runner_group]
56+
runs-on: [self-hosted, ubuntu_big_2004]
5757
timeout-minutes: 60
5858
steps:
5959
- uses: actions/checkout@v4
@@ -74,7 +74,7 @@ jobs:
7474
run: ./build/github/cleanup-engflow-keys.sh
7575
if: always()
7676
check_generated_code:
77-
runs-on: [self-hosted, basic_runner_group]
77+
runs-on: [self-hosted, ubuntu_2004]
7878
timeout-minutes: 60
7979
steps:
8080
- uses: actions/checkout@v4
@@ -89,7 +89,7 @@ jobs:
8989
run: ./build/github/cleanup-engflow-keys.sh
9090
if: always()
9191
docker_image_amd64:
92-
runs-on: [self-hosted, basic_runner_group]
92+
runs-on: [self-hosted, ubuntu_2004]
9393
timeout-minutes: 60
9494
steps:
9595
- uses: actions/checkout@v4
@@ -110,7 +110,7 @@ jobs:
110110
run: ./build/github/cleanup-engflow-keys.sh
111111
if: always()
112112
examples_orms:
113-
runs-on: [self-hosted, basic_big_runner_group]
113+
runs-on: [self-hosted, ubuntu_big_2004]
114114
timeout-minutes: 120
115115
steps:
116116
- uses: actions/checkout@v4
@@ -131,7 +131,7 @@ jobs:
131131
run: ./cockroach/build/github/cleanup-engflow-keys.sh
132132
if: always()
133133
lint:
134-
runs-on: [self-hosted, basic_big_runner_group]
134+
runs-on: [self-hosted, ubuntu_big_2004]
135135
timeout-minutes: 120
136136
steps:
137137
- uses: actions/checkout@v4
@@ -155,7 +155,7 @@ jobs:
155155
run: ./build/github/cleanup-engflow-keys.sh
156156
if: always()
157157
local_roachtest:
158-
runs-on: [self-hosted, basic_big_runner_group]
158+
runs-on: [self-hosted, ubuntu_big_2004]
159159
timeout-minutes: 120
160160
steps:
161161
- uses: actions/checkout@v4
@@ -180,7 +180,7 @@ jobs:
180180
run: ./build/github/cleanup-engflow-keys.sh
181181
if: always()
182182
local_roachtest_fips:
183-
runs-on: [self-hosted, basic_runner_group_fips]
183+
runs-on: [self-hosted, ubuntu_2004_fips]
184184
timeout-minutes: 120
185185
steps:
186186
- uses: actions/checkout@v4
@@ -205,7 +205,7 @@ jobs:
205205
run: ./build/github/cleanup-engflow-keys.sh
206206
if: always()
207207
linux_amd64_build:
208-
runs-on: [self-hosted, basic_runner_group]
208+
runs-on: [self-hosted, ubuntu_2004]
209209
timeout-minutes: 60
210210
steps:
211211
- uses: actions/checkout@v4
@@ -226,7 +226,7 @@ jobs:
226226
run: ./build/github/cleanup-engflow-keys.sh
227227
if: always()
228228
linux_amd64_fips_build:
229-
runs-on: [self-hosted, basic_runner_group]
229+
runs-on: [self-hosted, ubuntu_2004]
230230
timeout-minutes: 60
231231
steps:
232232
- uses: actions/checkout@v4
@@ -247,7 +247,7 @@ jobs:
247247
run: ./build/github/cleanup-engflow-keys.sh
248248
if: always()
249249
unit_tests:
250-
runs-on: [self-hosted, basic_runner_group]
250+
runs-on: [self-hosted, ubuntu_2004]
251251
timeout-minutes: 120
252252
steps:
253253
- uses: actions/checkout@v4

.github/workflows/microbenchmarks-ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
jobs:
1818
base:
1919
name: build merge base
20-
runs-on: [self-hosted, basic_runner_group]
20+
runs-on: [self-hosted, ubuntu_2004]
2121
timeout-minutes: 30
2222
outputs:
2323
merge_base: ${{ steps.build.outputs.merge_base }}
@@ -32,7 +32,7 @@ jobs:
3232
pkg: ${{ env.PACKAGE }}
3333
head:
3434
name: build head
35-
runs-on: [self-hosted, basic_runner_group]
35+
runs-on: [self-hosted, ubuntu_2004]
3636
timeout-minutes: 30
3737
steps:
3838
- name: Checkout
@@ -44,7 +44,7 @@ jobs:
4444
ref: head
4545
pkg: ${{ env.PACKAGE }}
4646
run-group-1:
47-
runs-on: [self-hosted, basic_microbench_runner_group]
47+
runs-on: [self-hosted, ubuntu_2004_microbench]
4848
timeout-minutes: 60
4949
needs: [base, head]
5050
steps:
@@ -57,7 +57,7 @@ jobs:
5757
pkg: ${{ env.PACKAGE }}
5858
group: 1
5959
run-group-2:
60-
runs-on: [self-hosted, basic_microbench_runner_group]
60+
runs-on: [self-hosted, ubuntu_2004_microbench]
6161
timeout-minutes: 60
6262
needs: [base, head]
6363
steps:
@@ -70,7 +70,7 @@ jobs:
7070
pkg: ${{ env.PACKAGE }}
7171
group: 2
7272
compare:
73-
runs-on: [self-hosted, basic_runner_group]
73+
runs-on: [self-hosted, ubuntu_2004]
7474
timeout-minutes: 30
7575
needs: [base, run-group-1, run-group-2]
7676
steps:

0 commit comments

Comments
 (0)