This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
WIP: Replace vbox with qemu #120
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: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
box: | |
- fbsd_13_2 | |
- fbsd_12_4 | |
steps: | |
- name: Install Vagrant | |
run: apt-get install vagrant | |
- 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 QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up VM | |
run: | | |
vagrant plugin install vagrant-disksize | |
vagrant status | |
vagrant up --provider qemu ${{ 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 |