Skip to content

Commit fe727d5

Browse files
committed
set-matrix: run on ubuntu-slim
GitHub now provides a lightweight runner [1], which is perfect for little jobs like set-matrix. [1] https://github.blog/changelog/2026-01-22-1-vcpu-linux-runner-now-generally-available-in-github-actions/ Signed-off-by: Ihor Solodrai <[email protected]>
1 parent fc490a8 commit fe727d5

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,7 @@ concurrency:
1515

1616
jobs:
1717
set-matrix:
18-
# FIXME: set-matrix is lightweight, run it on any self-hosted machines for kernel-patches org
19-
# so we do not wait for GH hosted runners when there potentially all are busy because of bpf-rc
20-
# repo for instance.
21-
# This could be somehow fixed long term by making this action/workflow re-usable and letting the called
22-
# specify what to run on.
23-
runs-on: ${{ github.repository_owner == 'kernel-patches' && 'x86_64' || 'ubuntu-latest' }}
18+
runs-on: ubuntu-slim
2419
permissions: read-all
2520
outputs:
2621
build-matrix: ${{ steps.set-matrix-impl.outputs.build_matrix }}

0 commit comments

Comments
 (0)