1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 02:47:56 +01:00

ci: Test resulting test ISO (#26)

This commit is contained in:
Jason N 2024-03-05 16:10:08 -05:00 committed by GitHub
parent ef90875a1c
commit 8d9ceeb579
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 148 additions and 2 deletions

View file

@ -10,7 +10,7 @@ WEB_UI = false
REPOS = /etc/yum.repos.d/fedora.repo /etc/yum.repos.d/fedora-updates.repo
ENROLLMENT_PASSWORD =
SECURE_BOOT_KEY_URL =
ADDITIONAL_TEMPLATES = ""
ADDITIONAL_TEMPLATES =
ROOTFS_SIZE = 4
# Generated vars
@ -175,6 +175,11 @@ clean:
install-deps:
dnf install -y lorax xorriso skopeo
test-iso:
$(eval _TESTS = $(filter-out README.md,$(shell ls tests/iso)))
$(foreach test,$(_TESTS),chmod +x tests/iso/$(test))
$(foreach test,$(_TESTS),./tests/iso/$(test) deploy.iso)
.PHONY: clean install-deps