From ca523346ace4c1bc0a752a7f5a25eb28669a9761 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Thu, 6 Feb 2014 23:05:56 +0100 Subject: [PATCH] Fix history generation --- continuous/steps/Makefile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/continuous/steps/Makefile b/continuous/steps/Makefile index 84b0960..cb2703d 100644 --- a/continuous/steps/Makefile +++ b/continuous/steps/Makefile @@ -1,11 +1,17 @@ all: run-parts -v --exit-on-error . +history: + for i in $$(cat tags); do $(MAKE) $$i; done < /dev/null + v%: - cd linux && git checkout $@ - @echo "! Date: $(shell cd linux && git log -1 --format=%ai) ok" + cd linux && git clean -fxd > /dev/null && git reset --hard $@ + @$(MAKE) log 2>&1 < /dev/null | tee ../logs/$@.log + touch $@ + +log: + @echo "! Date: $$(cd linux && git log -1 --format=%ci) ok" ./11-patch ./20-config ./30-compile ./40-run-tests - touch $@ -- 2.39.2