| OLD | NEW |
| 1 "[BUILD_ROOT]/slave/fake_slave/build/toolkit/buildbot/gen_steps.py" | 1 [ |
| 2 { |
| 3 "cmd": ["[BUILD_ROOT]/scripts/slave/git_setup.py", "--path", "[SLAVE_BUILD_RO
OT]/toolkit", "--url", "https://github.com/toolkitchen/toolkit.git"], |
| 4 "name": "git setup", |
| 5 "seed_steps": ["git setup", "git fetch", "git update-ref", "git clean", "git
checkout", "git submodule"] |
| 6 }, |
| 7 { |
| 8 "cmd": ["git", "--work-tree", "[SLAVE_BUILD_ROOT]/toolkit", "--git-dir", "[SL
AVE_BUILD_ROOT]/toolkit/.git", "fetch", "origin", "--recurse-submodules"], |
| 9 "name": "git fetch" |
| 10 }, |
| 11 { |
| 12 "cmd": ["git", "--work-tree", "[SLAVE_BUILD_ROOT]/toolkit", "--git-dir", "[SL
AVE_BUILD_ROOT]/toolkit/.git", "update-ref", "refs/heads/master", "origin/master
"], |
| 13 "name": "git update-ref" |
| 14 }, |
| 15 { |
| 16 "cmd": ["git", "--work-tree", "[SLAVE_BUILD_ROOT]/toolkit", "--git-dir", "[SL
AVE_BUILD_ROOT]/toolkit/.git", "clean", "-f", "-d", "-X"], |
| 17 "name": "git clean" |
| 18 }, |
| 19 { |
| 20 "cmd": ["git", "--work-tree", "[SLAVE_BUILD_ROOT]/toolkit", "--git-dir", "[SL
AVE_BUILD_ROOT]/toolkit/.git", "checkout", "-f", "master"], |
| 21 "name": "git checkout" |
| 22 }, |
| 23 { |
| 24 "cmd": ["git", "--work-tree", "[SLAVE_BUILD_ROOT]/toolkit", "--git-dir", "[SL
AVE_BUILD_ROOT]/toolkit/.git", "submodule", "update", "--init", "--recursive"], |
| 25 "name": "git submodule" |
| 26 }, |
| 27 { |
| 28 "cmd": ["[SLAVE_BUILD_ROOT]/toolkit/buildbot/gen_steps.py", "--factory-proper
ties", "{\"recipe\": \"toolkit\"}", "--build-properties", "{\"blamelist\": [\"co
ol_dev1337@chromium.org\"], \"patchset\": 1, \"rietveld\": \"https://chromiumcod
ereview.appspot.com\", \"issue\": 12853011, \"repository\": \"https://github.com
/toolkitchen/toolkit\"}", "--output-json", "/path/to/tmp/json"], |
| 29 "cwd": "[SLAVE_BUILD_ROOT]/toolkit", |
| 30 "name": "gen step(gen_steps.py)" |
| 31 }, |
| 32 { |
| 33 "cmd": ["bogus.py", "--arg"], |
| 34 "name": "bogus", |
| 35 "seed_steps": ["bogus"] |
| 36 } |
| 37 ] |
| OLD | NEW |