try ubuntu in vagrant #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: vagrant-mint | |
on: [push] | |
jobs: | |
vagrant-mint-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.mint21_64 | |
if: always() | |
run: sudo VAGRANT_VAGRANTFILE=Vagrantfile.mint21_64 vagrant up --provision --provider=virtualbox | |
- name: destroy Vagrantfile.mint21_64 | |
if: always() | |
run: sudo VAGRANT_VAGRANTFILE=Vagrantfile.mint21_64 vagrant destroy -f | |
- name: test Vagrantfile.mint22_64 | |
if: always() | |
run: sudo VAGRANT_VAGRANTFILE=Vagrantfile.mint22_64 vagrant up --provision --provider=virtualbox | |
- name: destroy Vagrantfile.mint22_64 | |
if: always() | |
run: sudo VAGRANT_VAGRANTFILE=Vagrantfile.mint22_64 vagrant destroy -f |