Skip to content

Commit

Permalink
fix(ci): use selfhosted runner
Browse files Browse the repository at this point in the history
  • Loading branch information
ezrizhu committed Nov 18, 2023
1 parent 9d60bc2 commit e4c67bd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/vagrant.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,13 @@ jobs:
- debianlvm
- rocky9
- fedora33
runs-on: macos-12
runs-on: self-hosted
steps:
- uses: actions/checkout@v3

- name: Start vagrant box
run: vagrant up ${{ matrix.vagrant_target }}

- name: Stop vagrant box
run: vagrant destroy -f ${{ matrix.vagrant_target }}
if: ${{ success() || failure() }} # we want to run this step even if the last step failed

0 comments on commit e4c67bd

Please sign in to comment.