From d36be78c4f021db8a596020e58553fd866a39bb9 Mon Sep 17 00:00:00 2001 From: Kris Lamoureux Date: Sun, 28 Apr 2024 20:59:05 -0400 Subject: [PATCH] testing --- .github/workflows/vagrant.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/vagrant.yml b/.github/workflows/vagrant.yml index bebdcec..f8ff6cb 100644 --- a/.github/workflows/vagrant.yml +++ b/.github/workflows/vagrant.yml @@ -8,7 +8,7 @@ on: jobs: homelab-ci: - runs-on: macos-latest + runs-on: macos-13 steps: - uses: actions/checkout@v3 @@ -21,19 +21,20 @@ jobs: restore-keys: | ${{ runner.os }}-vagrant- + - name: Install VirtualBox + run: brew install --cask virtualbox + - name: Install Ansible - run: brew install ansible@7 + run: brew install ansible - name: Software Versions run: | - printf "VirtualBox " - vboxmanage --version + printf "VirtualBox "; vboxmanage --version vagrant --version - export PATH="/usr/local/opt/ansible@7/bin:$PATH" ansible --version - name: Vagrant Up with Dockerbox Playbook run: | - export PATH="/usr/local/opt/ansible@7/bin:$PATH" + export VAGRANT_LOG=debug PLAYBOOK=dockerbox vagrant up vagrant ssh -c "docker ps"