aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2018-10-12 10:10:50 +0200
committerGravatar GitHub <noreply@github.com>2018-10-12 10:10:50 +0200
commit9ace9a4a07a4949d01d371905c1dcca9a522d245 (patch)
treed11559b5ec5fe2b59e0f46e1fd553b9d3d40874d
parente36c14fb61aaaf4880b0fb4811f94d7980d71626 (diff)
parenteac8b812b4e30acf6a16e292c226cca0244720db (diff)
Merge pull request #16844 from jtattermusch/fixup_16837
Fixup #16837 (build_performance.sh)
-rwxr-xr-xtools/run_tests/performance/build_performance.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/run_tests/performance/build_performance.sh b/tools/run_tests/performance/build_performance.sh
index 235fc02bf1..9e6e72d97b 100755
--- a/tools/run_tests/performance/build_performance.sh
+++ b/tools/run_tests/performance/build_performance.sh
@@ -61,9 +61,12 @@ do
"node"|"node_purejs")
tools/run_tests/performance/build_performance_node.sh
;;
- *)
+ "python")
# 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
;;
+ *)
+ python tools/run_tests/run_tests.py -l "$language" -c "$CONFIG" --build_only -j 8
+ ;;
esac
done