Skip to content

Commit 4e2b895

Browse files
committed
workflows: Change runner from ubuntu-24.04 to self-hosted
Updated multiple workflow files to use self-hosted runners instead of the default ubuntu-24.04 for improved performance and flexibility. Signed-off-by: Chiho Sin <[email protected]>
1 parent 4863de8 commit 4e2b895

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/build-board-custom.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ run-name: ${{ inputs.board }}-${{ inputs.language }}-${{ inputs.version }}${{ in
3636

3737
jobs:
3838
build:
39-
runs-on: ubuntu-24.04
39+
runs-on: self-hosted
4040
steps:
4141
- name: Set up repository
4242
run: |

.github/workflows/build-boards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020

2121
jobs:
2222
board:
23-
runs-on: ubuntu-24.04
23+
runs-on: self-hosted
2424
env:
2525
CP_VERSION: ${{ inputs.cp-version }}
2626
strategy:

.github/workflows/build-mpy-cross.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
jobs:
1616
build:
17-
runs-on: ubuntu-24.04
17+
runs-on: self-hosted
1818
strategy:
1919
fail-fast: false
2020
matrix:

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616

1717
jobs:
1818
scheduler:
19-
runs-on: ubuntu-24.04
19+
runs-on: self-hosted
2020
outputs:
2121
docs: ${{ steps.set-matrix.outputs.docs }}
2222
ports: ${{ steps.set-matrix.outputs.ports }}
@@ -164,7 +164,7 @@ jobs:
164164
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
165165

166166
docs:
167-
runs-on: ubuntu-24.04
167+
runs-on: self-hosted
168168
needs: scheduler
169169
if: needs.scheduler.outputs.docs == 'True'
170170
env:

.github/workflows/create-website-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
website:
13-
runs-on: ubuntu-24.04
13+
runs-on: self-hosted
1414
steps:
1515
- name: Dump GitHub context
1616
run: echo "$GITHUB_CONTEXT"

.github/workflows/notify-on-issue-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
notify:
9-
runs-on: ubuntu-latest
9+
runs-on: self-hosted
1010
permissions:
1111
issues: write
1212
steps:

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
jobs:
1616
pre-commit:
17-
runs-on: ubuntu-24.04
17+
runs-on: self-hosted
1818
steps:
1919
- name: Set up repository
2020
uses: actions/checkout@v4

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
run:
12-
runs-on: ubuntu-24.04
12+
runs-on: self-hosted
1313
strategy:
1414
fail-fast: false
1515
matrix:

0 commit comments

Comments
 (0)