aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/performance
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2018-10-11 21:20:01 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2018-10-11 21:27:19 +0200
commit22c6257040c0623b9dee377ec21221844ae5bb49 (patch)
treeece2abfa3b739b05d3a0a6f25794b3d1081a3ab3 /tools/run_tests/performance
parent223995b3defe2b68a0f504c7001c2233f9acb309 (diff)
only build with python27 in performance benchmarks
Diffstat (limited to 'tools/run_tests/performance')
-rwxr-xr-xtools/run_tests/performance/build_performance.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/run_tests/performance/build_performance.sh b/tools/run_tests/performance/build_performance.sh
index f235582579..235fc02bf1 100755
--- a/tools/run_tests/performance/build_performance.sh
+++ b/tools/run_tests/performance/build_performance.sh
@@ -62,7 +62,8 @@ do
tools/run_tests/performance/build_performance_node.sh
;;
*)
- python tools/run_tests/run_tests.py -l "$language" -c "$CONFIG" --build_only -j 8
+ # python workers are only run with python2.7 and building with multiple python versions is costly
+ python tools/run_tests/run_tests.py -l "$language" -c "$CONFIG" --compiler python2.7 --build_only -j 8
;;
esac
done