-
Notifications
You must be signed in to change notification settings - Fork 4
49 lines (39 loc) · 1.34 KB
/
vagrant-debian.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: vagrant-debian
on:
push:
branches: master
pull_request:
types:
- opened
jobs:
vagrant-debian-all:
runs-on: ubuntu-24.04
defaults:
run:
working-directory: ./vagrant
steps:
- name: add vagrant packages repo
uses: myci-actions/add-deb-repo@11
with:
repo: deb https://apt.releases.hashicorp.com noble main
repo-name: vagrant
keys-asc: https://apt.releases.hashicorp.com/gpg
install: vagrant
- name: checkout repo
uses: actions/checkout@v4
- name: install vagrant/qemu provider
uses: ConorMacBride/[email protected]
with:
apt: vagrant qemu-kvm virtualbox libvirt-daemon libvirt-daemon-driver-vbox
- name: test Vagrantfile.debian11_64
if: always()
run: sudo VAGRANT_VAGRANTFILE=Vagrantfile.debian11_64 vagrant up --provision --provider=virtualbox
- name: destroy Vagrantfile.debian11_64
if: always()
run: sudo VAGRANT_VAGRANTFILE=Vagrantfile.debian11_64 vagrant destroy -f
- name: test Vagrantfile.debian12_64
if: always()
run: sudo VAGRANT_VAGRANTFILE=Vagrantfile.debian12_64 vagrant up --provision --provider=virtualbox
- name: destroy Vagrantfile.debian12_64
if: always()
run: sudo VAGRANT_VAGRANTFILE=Vagrantfile.debian12_64 vagrant destroy -f