Skip to content

Commit 549b5b7

Browse files
committed
ci: use runs-on group
Use group instead of directly referencing runners. Signed-off-by: Anas Nashif <[email protected]>
1 parent a522719 commit 549b5b7

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/clang.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ concurrency:
88

99
jobs:
1010
clang-build:
11-
runs-on: zephyr-runner-v2-linux-x64-4xlarge
11+
runs-on:
12+
group: zephyr-runner-v2-linux-x64-4xlarge
1213
container:
1314
image: zephyrprojectrtos/ci:v0.18.4
1415
options: '--entrypoint /bin/bash'

.github/workflows/codecov.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ concurrency:
1010

1111
jobs:
1212
codecov:
13-
runs-on: zephyr-runner-v2-linux-x64-4xlarge
13+
runs-on:
14+
group: zephyr-runner-v2-linux-x64-4xlarge
1415
container:
1516
image: zephyrprojectrtos/ci:v0.18.4
1617
options: '--entrypoint /bin/bash'

.github/workflows/twister.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ concurrency:
1717

1818
jobs:
1919
twister-build-prep:
20-
runs-on: zephyr-runner-v2-linux-x64-4xlarge
20+
runs-on:
21+
group: zephyr-runner-v2-linux-x64-4xlarge
2122
container:
2223
image: zephyrprojectrtos/ci:v0.18.4
2324
options: '--entrypoint /bin/bash'
@@ -106,7 +107,8 @@ jobs:
106107
echo "size=${size}" >> $GITHUB_OUTPUT
107108
108109
twister-build:
109-
runs-on: zephyr-runner-v2-linux-x64-4xlarge
110+
runs-on:
111+
group: zephyr-runner-v2-linux-x64-4xlarge
110112
needs: twister-build-prep
111113
if: needs.twister-build-prep.outputs.size != 0
112114
container:

0 commit comments

Comments
 (0)