Skip to content

Commit e4c67bd

Browse files
committed
fix(ci): use selfhosted runner
1 parent 9d60bc2 commit e4c67bd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/vagrant.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,13 @@ jobs:
1919
- debianlvm
2020
- rocky9
2121
- fedora33
22-
runs-on: macos-12
22+
runs-on: self-hosted
2323
steps:
2424
- uses: actions/checkout@v3
2525

2626
- name: Start vagrant box
2727
run: vagrant up ${{ matrix.vagrant_target }}
28+
29+
- name: Stop vagrant box
30+
run: vagrant destroy -f ${{ matrix.vagrant_target }}
31+
if: ${{ success() || failure() }} # we want to run this step even if the last step failed

0 commit comments

Comments
 (0)