From ef5b798d563bfac26969ee04cc3aa6ce594980b6 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Thu, 6 Feb 2014 16:43:57 +0100 Subject: [PATCH 1/1] Add support for running benchmarks with older kernels --- continuous/steps/00-id | 3 +-- continuous/steps/10-clone | 2 -- continuous/steps/11-patch | 3 +++ continuous/steps/Makefile | 9 +++++++++ 4 files changed, 13 insertions(+), 4 deletions(-) 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 $@ -- 2.39.2