OSDN Git Service

perf/run: read GIT_PERF_REPO_NAME from perf.repoName
authorChristian Couder <christian.couder@gmail.com>
Fri, 5 Jan 2018 09:12:26 +0000 (10:12 +0100)
committerJunio C Hamano <gitster@pobox.com>
Fri, 5 Jan 2018 20:31:08 +0000 (12:31 -0800)
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 <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/perf/run

index ef56396..1a100d6 100755 (executable)
@@ -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