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 15, 2023
1 parent e9afc9b commit bd41b4c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/vagrant.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- selfhosted-runner
pull_request:
schedule:
- cron: '17 20 * * *'
Expand All @@ -19,9 +20,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() }}

0 comments on commit bd41b4c

Please sign in to comment.