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

move iso tests to Makefile

This commit is contained in:
Jason N. 2024-03-04 18:32:09 -05:00
parent e78da1e18b
commit 101b86b48e
2 changed files with 7 additions and 11 deletions

View file

@ -101,6 +101,11 @@ clean:
install-deps:
dnf install -y lorax xorriso podman
test-iso:
_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