| Index: tools/bots/pub.py
|
| diff --git a/tools/bots/pub.py b/tools/bots/pub.py
|
| index dc56e03b9fc1d8d4d25095b5c0fb55edaf53b631..640bd0b0ed6987aa6c2341ae1069c95fbbfdb101 100755
|
| --- a/tools/bots/pub.py
|
| +++ b/tools/bots/pub.py
|
| @@ -50,6 +50,8 @@ def PubSteps(build_info):
|
| # There are a number of big/integration tests in pkg, run with bigger timeout
|
| common_args.append('--timeout=120')
|
|
|
| + if build_info.system == 'windows':
|
| + common_args.append('-j1')
|
| opt_threshold = '--vm-options=--optimization-counter-threshold=5'
|
| if build_info.mode == 'release':
|
| bot.RunTest('pub and pkg ', build_info,
|
| @@ -80,8 +82,6 @@ def PubSteps(build_info):
|
| # Experiment with not running concurrent calls.
|
| public_args = (common_args +
|
| ['--append_logs', '--use-public-packages', 'pkgbuild'])
|
| - if build_info.system == 'windows':
|
| - public_args.append('-j1')
|
| bot.RunTest('pkgbuild_public_pkgs', pkgbuild_build_info, public_args)
|
|
|
| if __name__ == '__main__':
|
|
|