ISO/.gitlab-ci.yml
David Runge d835419b36
Adding script to run archiso in qemu
scripts/run_archiso.sh:
A script to run a built archiso image using qemu.
It can run the image on an emulated BIOS (using seabios) or UEFI (using edk2-ovmf) system.

.gitlab-ci.yml:
Adding scripts/run_archiso.sh to shellcheck call.

Closes #28
2020-07-10 23:13:27 +02:00

18 lines
410 B
YAML

---
default:
image: archlinux/base
before_script:
- pacman --noconfirm -Syy
- pacman --noconfirm -S base-devel shellcheck
lint:
stage: build
script:
- shellcheck -s bash
archiso/mkarchiso
configs/{baseline,releng}/build.sh
configs/releng/airootfs/root/.automated_script.sh
configs/releng/airootfs/usr/local/bin/choose-mirror
scripts/run_archiso.sh