Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Install virtualbox #113

Install virtualbox

Install virtualbox #113

Workflow file for this run

name: ci
on:
push:
tags:
schedule:
- cron: "0 0 * * 1"
workflow_dispatch:
jobs:
package-box:
name: Package Vagrant Boxes
runs-on: macos-13
strategy:
fail-fast: false
matrix:
box:
- fbsd_13_2
- fbsd_12_4
steps:
- name: Install virtualization tools
run: |
brew install vagrant
brew install virtualbox
- name: Cache Vagrant boxes
uses: actions/cache@v3
with:
path: ~/.vagrant.d
key: ${{ matrix.box }}-vagrant-20231102-${{ hashFiles('Vagrantfile') }}
restore-keys: |
${{ matrix.box }}-vagrant-20231102-
- uses: actions/checkout@v3
- name: Set up VM
run: |
vagrant plugin install vagrant-disksize
vagrant status
vagrant up ${{ matrix.box }}
- name: Package box
run: |
vagrant package ${{ matrix.box }} --output ${{ matrix.box }}.box
ls -ahl *.box
- name: Publish release
if: "startsWith(github.ref, 'refs/tags/')"
uses: softprops/action-gh-release@v1
with:
files: ${{ matrix.box }}.box