aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_tests_matrix.py
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2017-05-30 17:37:02 -0700
committerGravatar murgatroid99 <mlumish@google.com>2017-05-30 17:38:16 -0700
commit4bea5b9866412c181c16cac119c314910a701c20 (patch)
tree49dd842b8a210b8109e07c7e4c8a4e92597c42f5 /tools/run_tests/run_tests_matrix.py
parent6869aedcf557e36f8d42723ee65786d6601b4bc8 (diff)
Run tests on Node 8 by default, add Node 7 to portability suite
Diffstat (limited to 'tools/run_tests/run_tests_matrix.py')
-rwxr-xr-xtools/run_tests/run_tests_matrix.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/run_tests/run_tests_matrix.py b/tools/run_tests/run_tests_matrix.py
index 84551d9394..32b9d5676d 100755
--- a/tools/run_tests/run_tests_matrix.py
+++ b/tools/run_tests/run_tests_matrix.py
@@ -309,6 +309,15 @@ def _create_portability_test_jobs(extra_args=[], inner_jobs=_DEFAULT_INNER_JOBS)
extra_args=extra_args,
inner_jobs=inner_jobs)
+ test_jobs += _generate_jobs(languages=['node'],
+ configs=['dbg'],
+ platforms=['linux'],
+ arch='default',
+ compiler='node7',
+ labels=['portability'],
+ extra_args=extra_args,
+ inner_jobs=inner_jobs)
+
return test_jobs