This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch inserted_src in repository toolchain/semiautobench.
commit bba522907d25df2d18700bc3b00d2964f0f2de91 Author: Bernard Ogden bernie.ogden@linaro.org Date: Mon Jul 13 15:27:22 2015 +0200
Feed YAML parameters through
Change-Id: I8df0407b40aadecc9c85cda8de372a371cc01087 --- bench-session-debian.yaml | 8 +++++++- invoke_session_debian | 8 ++++++++ 2 files changed, 15 insertions(+), 1 deletion(-)
diff --git a/bench-session-debian.yaml b/bench-session-debian.yaml index a60ec9b..56d114f 100644 --- a/bench-session-debian.yaml +++ b/bench-session-debian.yaml @@ -7,6 +7,12 @@ metadata: params: PUB_KEY: None GATEWAY: 10.0.0.1 + ABE_BRANCH: benchmarking + BENCHMARK: fakebench + TOOLCHAIN: http://releases.linaro.org/14.11/components/toolchain/binaries/arm- [...] + TARGETS: kvm + RUN_FLAGS: + COMPILER_FLAGS:
install: sources: @@ -37,4 +43,4 @@ install: run: steps: - ./setup_session_debian "$PUB_KEY" - - ./invoke_session_debian "$GATEWAY" + - ./invoke_session_debian "$GATEWAY" "$ABE_BRANCH" "$BENCHMARK" "$TOOLCHAI [...] diff --git a/invoke_session_debian b/invoke_session_debian index e40e11c..3be29b3 100755 --- a/invoke_session_debian +++ b/invoke_session_debian @@ -11,6 +11,14 @@ env
# Hack for now until lava-test-shell is smart enough to know it's dispatcher ip gateway=$1 +ABE_BRANCH="$2" + +#these parameters used by Benchmark.job +export benchmark="$3" +export toolchain="$4" +export targets="$5" +export run_flags="$6" +export compiler_flags="$7" echo "Target's Gateway: $gateway"
if ! grep 'invoke_session' /etc/rc.local