Skip to content

Commit bd2bce0

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 ff83979 commit bd2bce0

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
@@ -54,7 +54,7 @@ concurrency:
5454
cancel-in-progress: true
5555
jobs:
5656
acceptance:
57-
runs-on: [self-hosted, basic_big_runner_group]
57+
runs-on: [self-hosted, ubuntu_big_2004]
5858
timeout-minutes: 60
5959
steps:
6060
- uses: actions/checkout@v4
@@ -75,7 +75,7 @@ jobs:
7575
run: ./build/github/cleanup-engflow-keys.sh
7676
if: always()
7777
check_generated_code:
78-
runs-on: [self-hosted, basic_runner_group]
78+
runs-on: [self-hosted, ubuntu_2004]
7979
timeout-minutes: 60
8080
steps:
8181
- uses: actions/checkout@v4
@@ -90,7 +90,7 @@ jobs:
9090
run: ./build/github/cleanup-engflow-keys.sh
9191
if: always()
9292
docker_image_amd64:
93-
runs-on: [self-hosted, basic_runner_group]
93+
runs-on: [self-hosted, ubuntu_2004]
9494
timeout-minutes: 60
9595
steps:
9696
- uses: actions/checkout@v4
@@ -111,7 +111,7 @@ jobs:
111111
run: ./build/github/cleanup-engflow-keys.sh
112112
if: always()
113113
examples_orms:
114-
runs-on: [self-hosted, basic_big_runner_group]
114+
runs-on: [self-hosted, ubuntu_big_2004]
115115
timeout-minutes: 120
116116
steps:
117117
- uses: actions/checkout@v4
@@ -132,7 +132,7 @@ jobs:
132132
run: ./cockroach/build/github/cleanup-engflow-keys.sh
133133
if: always()
134134
lint:
135-
runs-on: [self-hosted, basic_big_runner_group]
135+
runs-on: [self-hosted, ubuntu_big_2004]
136136
timeout-minutes: 120
137137
steps:
138138
- uses: actions/checkout@v4
@@ -156,7 +156,7 @@ jobs:
156156
run: ./build/github/cleanup-engflow-keys.sh
157157
if: always()
158158
local_roachtest:
159-
runs-on: [self-hosted, basic_big_runner_group]
159+
runs-on: [self-hosted, ubuntu_big_2004]
160160
timeout-minutes: 120
161161
steps:
162162
- uses: actions/checkout@v4
@@ -181,7 +181,7 @@ jobs:
181181
run: ./build/github/cleanup-engflow-keys.sh
182182
if: always()
183183
local_roachtest_fips:
184-
runs-on: [self-hosted, basic_runner_group_fips]
184+
runs-on: [self-hosted, ubuntu_2004_fips]
185185
timeout-minutes: 120
186186
steps:
187187
- uses: actions/checkout@v4
@@ -206,7 +206,7 @@ jobs:
206206
run: ./build/github/cleanup-engflow-keys.sh
207207
if: always()
208208
linux_amd64_build:
209-
runs-on: [self-hosted, basic_runner_group]
209+
runs-on: [self-hosted, ubuntu_2004]
210210
timeout-minutes: 60
211211
steps:
212212
- uses: actions/checkout@v4
@@ -227,7 +227,7 @@ jobs:
227227
run: ./build/github/cleanup-engflow-keys.sh
228228
if: always()
229229
linux_amd64_fips_build:
230-
runs-on: [self-hosted, basic_runner_group]
230+
runs-on: [self-hosted, ubuntu_2004]
231231
timeout-minutes: 60
232232
steps:
233233
- uses: actions/checkout@v4
@@ -248,7 +248,7 @@ jobs:
248248
run: ./build/github/cleanup-engflow-keys.sh
249249
if: always()
250250
unit_tests:
251-
runs-on: [self-hosted, basic_runner_group]
251+
runs-on: [self-hosted, ubuntu_2004]
252252
timeout-minutes: 120
253253
steps:
254254
- 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
if: ${{ !contains(github.event.pull_request.labels.*.name, 'X-skip-perf-check') }}
2323
outputs:
@@ -33,7 +33,7 @@ jobs:
3333
pkg: ${{ env.PACKAGE }}
3434
head:
3535
name: build head
36-
runs-on: [self-hosted, basic_runner_group]
36+
runs-on: [self-hosted, ubuntu_2004]
3737
timeout-minutes: 30
3838
if: ${{ !contains(github.event.pull_request.labels.*.name, 'X-skip-perf-check') }}
3939
steps:
@@ -46,7 +46,7 @@ jobs:
4646
ref: head
4747
pkg: ${{ env.PACKAGE }}
4848
run-group-1:
49-
runs-on: [self-hosted, basic_microbench_runner_group]
49+
runs-on: [self-hosted, ubuntu_2004_microbench]
5050
timeout-minutes: 60
5151
needs: [base, head]
5252
steps:
@@ -59,7 +59,7 @@ jobs:
5959
pkg: ${{ env.PACKAGE }}
6060
group: 1
6161
run-group-2:
62-
runs-on: [self-hosted, basic_microbench_runner_group]
62+
runs-on: [self-hosted, ubuntu_2004_microbench]
6363
timeout-minutes: 60
6464
needs: [base, head]
6565
steps:
@@ -72,7 +72,7 @@ jobs:
7272
pkg: ${{ env.PACKAGE }}
7373
group: 2
7474
compare:
75-
runs-on: [self-hosted, basic_runner_group]
75+
runs-on: [self-hosted, ubuntu_2004]
7676
timeout-minutes: 30
7777
permissions:
7878
contents: read

0 commit comments

Comments
 (0)