Skip to content

Commit

Permalink
CI: add initial self-hosted runner
Browse files Browse the repository at this point in the history
This adds at least one set of rules for self hosted github runners.

Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
  • Loading branch information
mcgrof committed Sep 29, 2024
1 parent 61b3c99 commit 3d6ca18
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/self-hosted.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Run kdevops on self-hosted runner

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'

jobs:
run-kdevops:
name: Run kdevops on Self-hosted Runner
runs-on: self-hosted

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Run kdevops defconfig-xfs_reflink_4k
run: |
make KDEVOPS_HOSTS_PREFIX="gh" defconfig-xfs_reflink_4k
- name: Run kdevops make
run: |
make $(nproc)
- name: Run kdevops make bringup
run: |
make bringup
- name: Run kdevops make destroy
run: |
make destroy

0 comments on commit 3d6ca18

Please # to comment.