From: Christian Couder Date: Fri, 5 Jan 2018 09:12:26 +0000 (+0100) Subject: perf/run: read GIT_PERF_REPO_NAME from perf.repoName X-Git-Tag: v2.17.0-rc0~145^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=19cf57a92e;p=thirdparty%2Fgit.git perf/run: read GIT_PERF_REPO_NAME from perf.repoName The GIT_PERF_REPO_NAME env variable is used in the `aggregate.perl` script to set the 'environment' field in the JSON Codespeed output. Let's make it easy to set this variable by setting it in a config file. Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano --- diff --git a/t/perf/run b/t/perf/run index ef56396546..1a100d6134 100755 --- a/t/perf/run +++ b/t/perf/run @@ -137,6 +137,9 @@ run_subsection () { get_var_from_env_or_config "GIT_PERF_MAKE_COMMAND" "perf" "makeCommand" get_var_from_env_or_config "GIT_PERF_MAKE_OPTS" "perf" "makeOpts" + get_var_from_env_or_config "GIT_PERF_REPO_NAME" "perf" "repoName" + export GIT_PERF_REPO_NAME + GIT_PERF_AGGREGATING_LATER=t export GIT_PERF_AGGREGATING_LATER