| Index: scripts/slave/recipes/polymer.py
|
| diff --git a/scripts/slave/recipes/polymer.py b/scripts/slave/recipes/polymer.py
|
| index a41f42c3e1868dc8f804ca137ffd0afa637d4c9f..b710b5f90de1ec19e0062b7a390f8631ee81e598 100644
|
| --- a/scripts/slave/recipes/polymer.py
|
| +++ b/scripts/slave/recipes/polymer.py
|
| @@ -52,10 +52,9 @@ def _CheckoutSteps(api):
|
|
|
|
|
| def GenSteps(api):
|
| -
|
| yield _CheckoutSteps(api)
|
| this_repo = api.properties['buildername'].split()[0]
|
| - api.path.choose_checkout(api.path.slave_build(this_repo))
|
| + api.path.set_dynamic_path('checkout', api.path.slave_build(this_repo))
|
|
|
| tmp_path = ''
|
| tmp_args = []
|
| @@ -87,10 +86,10 @@ def GenSteps(api):
|
| test_prefix = ['xvfb-run']
|
|
|
| yield api.step('update-install', ['npm' + cmd_suffix, 'install'] + tmp_args,
|
| - cwd=api.path.checkout(), env=node_env)
|
| + cwd=api.path.checkout, env=node_env)
|
|
|
| yield api.step('test', test_prefix + ['grunt' + cmd_suffix,
|
| - 'test-buildbot'], cwd=api.path.checkout(),
|
| + 'test-buildbot'], cwd=api.path.checkout,
|
| env=node_env, allow_subannotations=True)
|
|
|
|
|
|
|