From b7ed8f8b40bcaf4c66331ca9aa404dbcb704cefb Mon Sep 17 00:00:00 2001 From: Björn Mattsson Date: Mon, 14 Sep 2020 16:22:23 +0200 Subject: Stub for validation on metadata.swamid --- .time/_do_not_remove_dir | 0 Makefile | 6 ++++++ 2 files changed, 6 insertions(+) create mode 100644 .time/_do_not_remove_dir diff --git a/.time/_do_not_remove_dir b/.time/_do_not_remove_dir new file mode 100644 index 00000000..e69de29b diff --git a/Makefile b/Makefile index f5d67ded..32182668 100644 --- a/Makefile +++ b/Makefile @@ -27,6 +27,7 @@ all: clean dependencies test sign clean web MXML=$(shell echo *.mxml) SWAMIDXML=$(patsubst swamid-2.0/%.xml,.time/%.time,$(wildcard swamid-2.0/*.xml)) +VALIDATEXML=$(patsubst swamid-2.0/%.xml,.time/%.validate,$(wildcard swamid-2.0/*.xml)) TIMEFILES=$(patsubst %.time,.xml/swamid-2.0/%.time,$(wildcard .time/*.time)) sign: swamid upstream projects @@ -312,3 +313,8 @@ commit: tidy test @echo "Checking for not committed files in swamid-2.0/" ; if git status --porcelain --ignored | awk '{print $$2}' | grep "^swamid-2.0/" | sed 's/^/ /' | grep . ; then echo "Not committed files in swamid-2.0/, aborting" ; exit 1 ; fi @echo ; echo -n "Run 'git push'? [Y/n] " ; read x ; case $$x in "Y"|"y"|"") ;; *) exit 1 ;; esac @git push + +.time/%.validate: swamid-2.0/%.xml + @/var/www/metadata/validate.py prod $< + +validate: $(VALIDATEXML) -- cgit v1.2.3