Skip to content

Commit

Permalink
CI: use self-hosted runner to run tests
Browse files Browse the repository at this point in the history
Use prepared VM machine in GitHub actions to run mdadm tests on it.

Signed-off-by: Kinga Stefaniuk <[email protected]>
  • Loading branch information
ktanska committed Sep 3, 2024
1 parent b1d38b5 commit 329c868
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,22 @@ jobs:
run: mv .github/tools/.checkpatch.conf .
- name: Run checkpatch review
uses: webispy/checkpatch-action@v9
upstream_tests:
runs-on: self-hosted
name: upstream tests
steps:
- uses: actions/checkout@v4
- name: 'Make'
run: V=1 make -j$(nproc) && sudo make install
- name: 'Install'
run: sudo dracut -f
- name: 'Check OS'
run: sudo cat /etc/os-release
- name: 'Tests cleanup'
run: sudo ./test cleanup
- name: 'Tests setup'
run: sudo ./test setup
- name: Run tests
run: sudo ./test --skip-broken --skip-always-broken --no-error --disable-integrity --disable-multipath --disable-linear --keep-going
- name: 'Tests cleanup'
run: sudo ./test cleanup

0 comments on commit 329c868

Please sign in to comment.