Skip to content

Commit

Permalink
Merge pull request #82 from agable-chromium/master
Browse files Browse the repository at this point in the history
Add step-generator script to toolkit
  • Loading branch information
morethanreal committed Apr 3, 2013
2 parents 4600978 + 33de394 commit 3874d11
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions build/gen_steps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
"""Step generator script for the annotated Toolkit builders.
For more information, see scripts/slave/annotated_run.py in
https://chromium.googlesource.com/chromium/tools/build/"""

def GetSteps(api, _factory_properties, build_properties):
steps = api.Steps(build_properties)
return [
steps.step('update-install',
['npm', 'install'],
cwd=api.checkout_path()),
steps.step('grunt-test',
['grunt', 'test'],
cwd=api.checkout_path()),
]

0 comments on commit 3874d11

Please sign in to comment.