homelab/.github/workflows/vagrant.yml

38 lines
840 B
YAML
Raw Normal View History

name: homelab-ci
on:
push:
branches:
- main
- testing
jobs:
homelab-ci:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Cache Vagrant boxes
uses: actions/cache@v3
with:
path: ~/.vagrant.d/boxes
key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
restore-keys: |
${{ runner.os }}-vagrant-
- name: Install Ansible
2024-04-24 02:07:10 +00:00
run: brew install ansible
- name: Software Versions
run: |
2024-04-24 02:07:10 +00:00
printf "VirtualBox "; vboxmanage --version
vagrant --version
ansible --version
- name: Vagrant Up with Dockerbox Playbook
run: |
export PATH="/usr/local/opt/ansible@7/bin:$PATH"
PLAYBOOK=dockerbox vagrant up
vagrant ssh -c "docker ps"