This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
Switch to STABLE box that should have more recent fixes #114
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: 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 |