Skip to content

Update apk-tools to 2.14.0 #80

Update apk-tools to 2.14.0

Update apk-tools to 2.14.0 #80

Workflow file for this run

name: CI
on:
- pull_request
- push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install qemu-utils
run: |
sudo apt-get update
sudo apt-get install qemu-utils
- uses: actions/checkout@v3
- name: Build image without partition
run: |
sudo ./alpine-make-vm-image \
--image-format qcow2 \
--image-size 2G \
--repositories-file example/repositories \
--packages "$(cat example/packages)" \
--fs-skel-dir example/rootfs \
--fs-skel-chown root:root \
--script-chroot \
alpine-$(date +%Y-%m-%d).qcow2 -- ./example/configure.sh
- name: Build image with partition
run: |
sudo ./alpine-make-vm-image \
--image-format qcow2 \
--image-size 2G \
--partition \
--repositories-file example/repositories \
--packages "$(cat example/packages)" \
--fs-skel-dir example/rootfs \
--fs-skel-chown root:root \
--script-chroot \
alpine2-$(date +%Y-%m-%d).qcow2 -- ./example/configure.sh