Skip to content

Commit dfb939d

Browse files
authored
revert(ci): restore GitHub-hosted runners (#378)
## Summary - revert the self-hosted runner migration - restore GitHub-hosted workflow execution for this repo - remove the netcup runner dependency from CI #### Test plan - [x] Confirmed the revert removes `self-hosted` from the workflow files
1 parent 3f59771 commit dfb939d

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/luarocks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
publish:
1313
needs: ci
14-
runs-on: [self-hosted, linux, x64, netcup, general]
14+
runs-on: ubuntu-latest
1515

1616
steps:
1717
- uses: actions/checkout@v4

.github/workflows/quality.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
changes:
11-
runs-on: [self-hosted, linux, x64, netcup, general]
11+
runs-on: ubuntu-latest
1212
outputs:
1313
lua: ${{ steps.changes.outputs.lua }}
1414
python: ${{ steps.changes.outputs.python }}
@@ -44,7 +44,7 @@ jobs:
4444
4545
lua-format:
4646
name: Lua Format Check
47-
runs-on: [self-hosted, linux, x64, netcup, general]
47+
runs-on: ubuntu-latest
4848
needs: changes
4949
if: ${{ needs.changes.outputs.lua == 'true' }}
5050
steps:
@@ -54,7 +54,7 @@ jobs:
5454

5555
lua-lint:
5656
name: Lua Lint Check
57-
runs-on: [self-hosted, linux, x64, netcup, general]
57+
runs-on: ubuntu-latest
5858
needs: changes
5959
if: ${{ needs.changes.outputs.lua == 'true' }}
6060
steps:
@@ -64,7 +64,7 @@ jobs:
6464

6565
lua-typecheck:
6666
name: Lua Type Check
67-
runs-on: [self-hosted, linux, x64, netcup, general]
67+
runs-on: ubuntu-latest
6868
needs: changes
6969
if: ${{ needs.changes.outputs.lua == 'true' }}
7070
steps:
@@ -78,7 +78,7 @@ jobs:
7878

7979
python-format:
8080
name: Python Format Check
81-
runs-on: [self-hosted, linux, x64, netcup, general]
81+
runs-on: ubuntu-latest
8282
needs: changes
8383
if: ${{ needs.changes.outputs.python == 'true' }}
8484
steps:
@@ -92,7 +92,7 @@ jobs:
9292

9393
python-lint:
9494
name: Python Lint Check
95-
runs-on: [self-hosted, linux, x64, netcup, general]
95+
runs-on: ubuntu-latest
9696
needs: changes
9797
if: ${{ needs.changes.outputs.python == 'true' }}
9898
steps:
@@ -106,7 +106,7 @@ jobs:
106106

107107
python-typecheck:
108108
name: Python Type Check
109-
runs-on: [self-hosted, linux, x64, netcup, general]
109+
runs-on: ubuntu-latest
110110
needs: changes
111111
if: ${{ needs.changes.outputs.python == 'true' }}
112112
steps:
@@ -120,7 +120,7 @@ jobs:
120120

121121
vimdoc-check:
122122
name: Vimdoc Check
123-
runs-on: [self-hosted, linux, x64, netcup, general]
123+
runs-on: ubuntu-latest
124124
needs: changes
125125
if: ${{ needs.changes.outputs.vimdoc == 'true' }}
126126
steps:
@@ -130,7 +130,7 @@ jobs:
130130

131131
markdown-format:
132132
name: Markdown Format Check
133-
runs-on: [self-hosted, linux, x64, netcup, general]
133+
runs-on: ubuntu-latest
134134
needs: changes
135135
if: ${{ needs.changes.outputs.markdown == 'true' }}
136136
steps:

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
changes:
11-
runs-on: [self-hosted, linux, x64, netcup, general]
11+
runs-on: ubuntu-latest
1212
outputs:
1313
lua: ${{ steps.changes.outputs.lua }}
1414
python: ${{ steps.changes.outputs.python }}
@@ -37,7 +37,7 @@ jobs:
3737
3838
python-test:
3939
name: Python Tests
40-
runs-on: [self-hosted, linux, x64, netcup, general]
40+
runs-on: ubuntu-latest
4141
needs: changes
4242
if: ${{ needs.changes.outputs.python == 'true' }}
4343
steps:

0 commit comments

Comments
 (0)