Skip to content

Commit bd41b4c

Browse files
committed
fix(ci): use selfhosted runner
1 parent e9afc9b commit bd41b4c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/vagrant.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- main
7+
- selfhosted-runner
78
pull_request:
89
schedule:
910
- cron: '17 20 * * *'
@@ -19,9 +20,13 @@ jobs:
1920
- debianlvm
2021
- rocky9
2122
- fedora33
22-
runs-on: macos-12
23+
runs-on: self-hosted
2324
steps:
2425
- uses: actions/checkout@v3
2526

2627
- name: Start vagrant box
2728
run: vagrant up ${{ matrix.vagrant_target }}
29+
30+
- name: Stop vagrant box
31+
run: vagrant destroy -f ${{ matrix.vagrant_target }}
32+
if: ${{ success() || failure() }}

0 commit comments

Comments
 (0)