ci: Add Jenkins build+publish pipeline

This commit is contained in:
2025-07-02 15:15:28 -05:00
parent 1822514b36
commit 06ffb6713c
5 changed files with 59 additions and 1 deletions

View File

@@ -4,12 +4,15 @@ KICKSTARTS = \
fedora-rpi.ks \
fedora.ks
.PHONY: all clean
.PHONY: all clean publish
all: $(KICKSTARTS)
%.ks: %.ks.j2
python3 render.py $< > $@
publish:
sh publish.sh
clean:
rm -f $(KICKSTARTS)