Archivematica Vagrant box #55
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: Archivematica Vagrant box | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: Version (e.g. 1.13.0-rc.2) | |
required: true | |
description: | |
description: Description | |
required: true | |
jobs: | |
vagrant-box-archivematica: | |
name: Build and upload | |
runs-on: ubuntu-24.04 | |
env: | |
PACKER_CACHE_DIR: ${{ github.workspace }}/.packer_cache | |
PACKER_LOG: "TRACE" | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: "Install packer" | |
run: | | |
wget -O- https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg | |
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list | |
sudo apt update && sudo apt install packer | |
- name: "Install VirtualBox" | |
run: | | |
wget -O- https://www.virtualbox.org/download/oracle_vbox_2016.asc | sudo gpg --yes --output /usr/share/keyrings/oracle-virtualbox-2016.gpg --dearmor | |
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/oracle-virtualbox-2016.gpg] https://download.virtualbox.org/virtualbox/debian $(lsb_release -cs) contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list | |
sudo apt update && sudo apt install virtualbox-7.1 | |
- name: Set the user environment as VirtualBox expects it | |
run: | | |
echo "USER=$USER" >> $GITHUB_ENV | |
echo "LOGNAME=$USER" >> $GITHUB_ENV | |
- name: Install packer plugins | |
run: | | |
packer plugins install github.com/hashicorp/virtualbox | |
packer plugins install github.com/hashicorp/ansible | |
packer plugins install github.com/hashicorp/vagrant | |
- name: Build | |
run: | | |
cd ${{ github.workspace }}/packer/templates/vagrant-base-ubuntu-20.04-amd64 | |
packer build -on-error=abort template.json | |
cd ${{ github.workspace }}/packer/templates/vagrant-box-archivematica | |
packer build -on-error=abort template.json | |
mv ${{ github.workspace }}/packer/builds/virtualbox/vagrant-am.box \ | |
${{ github.workspace }}/archivematica-vagrant-${{ github.event.inputs.version }}.box |