Skip to content

Commit 7328d7c

Browse files
authored
Change runner from ubuntu-latest to self-hosted
1 parent 98641d4 commit 7328d7c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build-fio.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
check-release:
8-
runs-on: ubuntu-latest
8+
runs-on: self-hosted
99
outputs:
1010
latest-version: ${{ steps.get-version.outputs.version }}
1111
should-build: ${{ steps.check-version.outputs.should-build }}
@@ -40,7 +40,7 @@ jobs:
4040
build:
4141
needs: check-release
4242
if: needs.check-release.outputs.should-build == 'true'
43-
runs-on: ubuntu-latest
43+
runs-on: self-hosted
4444
strategy:
4545
matrix:
4646
include:
@@ -144,7 +144,7 @@ jobs:
144144
virustotal-scan:
145145
needs: [check-release, build]
146146
if: needs.check-release.outputs.should-build == 'true'
147-
runs-on: ubuntu-latest
147+
runs-on: self-hosted
148148
outputs:
149149
scan-results: ${{ steps.scan-summary.outputs.results }}
150150
all-clean: ${{ steps.scan-summary.outputs.all-clean }}
@@ -274,7 +274,7 @@ jobs:
274274
create-release:
275275
needs: [check-release, build, virustotal-scan]
276276
if: needs.check-release.outputs.should-build == 'true' && needs.virustotal-scan.outputs.all-clean == 'true'
277-
runs-on: ubuntu-latest
277+
runs-on: self-hosted
278278
steps:
279279
- name: Checkout repository
280280
uses: actions/checkout@v4
@@ -342,7 +342,7 @@ jobs:
342342
notify-failure:
343343
needs: [check-release, build, virustotal-scan]
344344
if: always() && needs.check-release.outputs.should-build == 'true' && (failure() || needs.virustotal-scan.outputs.all-clean == 'false')
345-
runs-on: ubuntu-latest
345+
runs-on: self-hosted
346346
steps:
347347
- name: Send failure notification
348348
run: |

0 commit comments

Comments
 (0)