Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
changes:
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
outputs:
lua: ${{ steps.changes.outputs.lua }}
steps:
Expand All @@ -26,7 +26,7 @@ jobs:
- 'selene.toml'

lua-format:
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
needs: changes
if: ${{ needs.changes.outputs.lua == 'true' }}
steps:
Expand All @@ -38,7 +38,7 @@ jobs:
args: --check .

lua-lint:
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
needs: changes
if: ${{ needs.changes.outputs.lua == 'true' }}
steps:
Expand All @@ -49,7 +49,7 @@ jobs:
args: --display-style quiet .

lua-typecheck:
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
needs: changes
if: ${{ needs.changes.outputs.lua == 'true' }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/luarocks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

publish:
needs: ci
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]

steps:
- uses: actions/checkout@v4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
changes:
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
outputs:
lua: ${{ steps.changes.outputs.lua }}
markdown: ${{ steps.changes.outputs.markdown }}
Expand All @@ -30,7 +30,7 @@ jobs:

lua-format:
name: Lua Format Check
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
needs: changes
if: ${{ needs.changes.outputs.lua == 'true' }}
steps:
Expand All @@ -43,7 +43,7 @@ jobs:

lua-lint:
name: Lua Lint Check
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
needs: changes
if: ${{ needs.changes.outputs.lua == 'true' }}
steps:
Expand All @@ -56,7 +56,7 @@ jobs:

lua-typecheck:
name: Lua Type Check
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
needs: changes
if: ${{ needs.changes.outputs.lua == 'true' }}
steps:
Expand All @@ -70,7 +70,7 @@ jobs:

markdown-format:
name: Markdown Format Check
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64, netcup, general]
needs: changes
if: ${{ needs.changes.outputs.markdown == 'true' }}
steps:
Expand Down
Loading