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 <chriscool@tuxfamily.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Christian Couder committed
Jan 5, 2018 at 10:12 UTC
19cf57a92e0f5e48580693110d9a53c62446f219
1 file changed
+3
t/perf/run
+3
@@ -137,6 +137,9 @@ run_subsection () {
137
get_var_from_env_or_config "GIT_PERF_MAKE_COMMAND" "perf" "makeCommand"
138
get_var_from_env_or_config "GIT_PERF_MAKE_OPTS" "perf" "makeOpts"
139
140
+ get_var_from_env_or_config "GIT_PERF_REPO_NAME" "perf" "repoName"
141
+ export GIT_PERF_REPO_NAME
142
+
143
GIT_PERF_AGGREGATING_LATER=t
144
export GIT_PERF_AGGREGATING_LATER
145