This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
WIP: Replace vbox with qemu #136
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_12 | |
- fbsd_13 | |
# - fbsd_14 | |
steps: | |
- name: Install Vagrant and QEMU | |
run: | | |
sudo apt-get install -qq -o=Dpkg::Use-Pty=0 moreutils | |
sudo chronic apt-get install -qq -o=Dpkg::Use-Pty=0 vagrant qemu-system 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 QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up VM | |
run: | | |
rm -rf ~/.vagrant | |
rm -rf ~/.vagrant.d | |
vagrant plugin install vagrant-disksize | |
vagrant plugin install vagrant-qemu | |
vagrant status | |
vagrant up --provider libvirt ${{ 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 |