Use "relatime" instead of "noatime" #69
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: | |
- 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 |