This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/jenkmarking-multinode in repository toolchain/abe.
commit 9877e61f28940f3f25dac2a3edaf879c8fe471e6 Author: Bernard Ogden bernie.ogden@linaro.org Date: Fri Jul 10 17:55:10 2015 +0200
Remove results transmission
Change-Id: I76dafb778344c159cfb4dc003de0d52150720ba6 --- scripts/Benchmark.job | 5 ----- 1 file changed, 5 deletions(-)
diff --git a/scripts/Benchmark.job b/scripts/Benchmark.job index aa4ddcd..ca0366f 100755 --- a/scripts/Benchmark.job +++ b/scripts/Benchmark.job @@ -8,7 +8,6 @@ benchgccpath= targets=(${targets}) maindir="`mktemp --tmpdir=${HOME} -d bench-XXX`" error=1 -results_dir="/work/benchmarking/${results_dir:-${JOB_NAME}/${BUILD_NUMBER}}"
trap "rm -rf ${maindir}; exit ${error}" EXIT
@@ -22,9 +21,6 @@ if test x"${benchmark:-}" = x; then exit 1 fi
-#Prepare results dir -ssh abe "mkdir -p ${results_dir}" - #Set up maindir echo "Building benchmark ${benchmark} in ${maindir}" chmod 700 "${maindir}" @@ -66,7 +62,6 @@ set +e "${WORKSPACE}"/abe/scripts/benchmark.sh ${run_flags:+-a "${run_flags//"/\"}"} $ [...] tmperr=$? set -e -scp -r ./"${benchmark}"-log abe:"${results_dir}" if test ${tmperr} -eq 0; then error=0 fi