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:
commit
9af2d7c936
5 changed files with 151 additions and 4 deletions
12
Makefile
12
Makefile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue