Skip to content

update ci base image to ubuntu #18

update ci base image to ubuntu

update ci base image to ubuntu #18

Workflow file for this run

name: Release CI
on:
push:
branches: [ "nixos-**" ]
jobs:
build:
name: Run build ${{ matrix.BUILDER }} ${{ matrix.ARCH }}
runs-on: ubuntu-latest
strategy:
matrix:
BUILDER: ['virtualbox-iso.virtualbox', 'qemu.qemu']
ARCH: ['x86_64']
steps:
- uses: actions/checkout@v3
- name: Install dependencies
if: ${{matrix.BUILDER == 'virtualbox-iso.virtualbox'}}
run: |
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
wget -O- https://www.virtualbox.org/download/oracle_vbox_2016.asc | sudo gpg --yes --output /usr/share/keyrings/oracle-virtualbox-2016.gpg --dearmor
sudo apt-get update
sudo apt-get install -y virtualbox-6.1
- name: Install dependencies
if: ${{matrix.BUILDER == 'qemu.qemu'}}
run: |
sudo apt-get update
sudo apt-get install -y \
qemu-system-x86 \
qemu libvirt-daemon-system
- name: Create Vagrant Cloud Box
run: |
curl \
--request POST \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${{ secrets.ATLAS_TOKEN }}" \
https://app.vagrantup.com/api/v2/boxes \
--data '{ "box": { "username": "nixbox", "name": "nixos" } }'
- name: Setup `packer`
uses: hashicorp/setup-packer@main
id: setup
with:
version: "latest"
- name: Run build ${{ matrix.BUILDER }} ${{ matrix.ARCH }} and push box to vagrant cloud
env:
ATLAS_TOKEN: ${{ secrets.ATLAS_TOKEN }}
run: make VERSION=${GITHUB_REF#refs/heads/nixos-} BUILDER=${{ matrix.BUILDER }} packer-build
- name: Release the Vagrant Cloud box
run: |
curl \
--request PUT \
--header "Authorization: Bearer ${{ secrets.ATLAS_TOKEN }}" \
"https://app.vagrantup.com/api/v2/box/nixbox/nixos/version/${GITHUB_REF#refs/heads/nixos-}/release"