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

Merge branch 'main' into flatpak

This commit is contained in:
Jason N 2024-03-05 16:11:24 -05:00 committed by GitHub
commit 9af2d7c936
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 151 additions and 4 deletions

View file

@ -14,7 +14,7 @@ FLATPAK_REMOTE_URL = https://flathub.org/repo/flathub.flatpakrepo
FLATPAK_REMOTE_REFS =
ENROLLMENT_PASSWORD =
SECURE_BOOT_KEY_URL =
ADDITIONAL_TEMPLATES = ""
ADDITIONAL_TEMPLATES =
ROOTFS_SIZE = 4
# Generated vars
@ -186,6 +186,12 @@ clean:
install-deps:
dnf install -y lorax xorriso skopeo flatpak dbus-daemon ostree
.PHONY: clean install-deps
test: test-iso
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 test test-iso