From 53b795705954cdba2c7964bca9ad19885187025a Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Thu, 10 Apr 2014 16:09:01 +0200 Subject: [PATCH 1/1] continuous: Add script to be used with "git bisect run" --- continuous/steps/bisect-run.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 continuous/steps/bisect-run.sh diff --git a/continuous/steps/bisect-run.sh b/continuous/steps/bisect-run.sh new file mode 100755 index 0000000..b4826c3 --- /dev/null +++ b/continuous/steps/bisect-run.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +set -e +set -x + +cd $(dirname $0) +./11-patch +./20-config +./30-compile +cd ../tests +timeout 30s ./kernelgw || ( echo Returned $?; exit 1 ) -- 2.39.2