From: Michal Sojka Date: Thu, 6 Feb 2014 15:43:57 +0000 (+0100) Subject: Add support for running benchmarks with older kernels X-Git-Tag: fix-allnoconfig~25 X-Git-Url: http://rtime.felk.cvut.cz/gitweb/can-benchmark.git/commitdiff_plain/ef5b798d563bfac26969ee04cc3aa6ce594980b6 Add support for running benchmarks with older kernels --- diff --git a/continuous/steps/00-id b/continuous/steps/00-id index fe78275..e052c42 100755 --- a/continuous/steps/00-id +++ b/continuous/steps/00-id @@ -2,5 +2,4 @@ set -e -echo "! Date: $(date +'%F %R:%S') ok" - +echo "! Date: $(date +'%F %R:%S %z') ok" diff --git a/continuous/steps/10-clone b/continuous/steps/10-clone index 754c326..0cf550c 100755 --- a/continuous/steps/10-clone +++ b/continuous/steps/10-clone @@ -13,5 +13,3 @@ fi cd linux git fetch $REPO git reset --hard FETCH_HEAD - -echo "! Repo $REPO $(git describe) $(git rev-parse HEAD) ok" diff --git a/continuous/steps/11-patch b/continuous/steps/11-patch index de5d663..e3d20be 100755 --- a/continuous/steps/11-patch +++ b/continuous/steps/11-patch @@ -3,4 +3,7 @@ set -e cd linux + +echo "! Repo $(git config remote.origin.url) $(git describe) $(git rev-parse HEAD) ok" + git am < ../shark-ryu-board-patch.patch diff --git a/continuous/steps/Makefile b/continuous/steps/Makefile index fd9f940..84b0960 100644 --- a/continuous/steps/Makefile +++ b/continuous/steps/Makefile @@ -1,2 +1,11 @@ all: run-parts -v --exit-on-error . + +v%: + cd linux && git checkout $@ + @echo "! Date: $(shell cd linux && git log -1 --format=%ai) ok" + ./11-patch + ./20-config + ./30-compile + ./40-run-tests + touch $@