d835419b36
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
18 lines
410 B
YAML
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
|