OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": ["[BUILD_ROOT]/scripts/slave/git_setup.py", "--path", "[SLAVE_BUILD_RO
OT]/toolkit", "--url", "https://github.com/toolkitchen/toolkit.git"], | 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", | 4 "name": "git setup", |
5 "seed_steps": ["git setup", "git fetch", "git update-ref", "git clean", "git
checkout", "git submodule"] | 5 "seed_steps": ["git setup", "git fetch", "git update-ref", "git clean", "git
checkout", "git submodule"] |
6 }, | 6 }, |
7 { | 7 { |
8 "cmd": ["git", "--work-tree", "[SLAVE_BUILD_ROOT]/toolkit", "--git-dir", "[SL
AVE_BUILD_ROOT]/toolkit/.git", "fetch", "origin", "--recurse-submodules"], | 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" | 9 "name": "git fetch", |
| 10 "seed_steps": [] |
10 }, | 11 }, |
11 { | 12 { |
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 "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 "name": "git update-ref", |
| 15 "seed_steps": [] |
14 }, | 16 }, |
15 { | 17 { |
16 "cmd": ["git", "--work-tree", "[SLAVE_BUILD_ROOT]/toolkit", "--git-dir", "[SL
AVE_BUILD_ROOT]/toolkit/.git", "clean", "-f", "-d", "-X"], | 18 "cmd": ["git", "--work-tree", "[SLAVE_BUILD_ROOT]/toolkit", "--git-dir", "[SL
AVE_BUILD_ROOT]/toolkit/.git", "clean", "-f", "-d", "-X"], |
17 "name": "git clean" | 19 "name": "git clean", |
| 20 "seed_steps": [] |
18 }, | 21 }, |
19 { | 22 { |
20 "cmd": ["git", "--work-tree", "[SLAVE_BUILD_ROOT]/toolkit", "--git-dir", "[SL
AVE_BUILD_ROOT]/toolkit/.git", "checkout", "-f", "master"], | 23 "cmd": ["git", "--work-tree", "[SLAVE_BUILD_ROOT]/toolkit", "--git-dir", "[SL
AVE_BUILD_ROOT]/toolkit/.git", "checkout", "-f", "master"], |
21 "name": "git checkout" | 24 "name": "git checkout", |
| 25 "seed_steps": [] |
22 }, | 26 }, |
23 { | 27 { |
24 "cmd": ["git", "--work-tree", "[SLAVE_BUILD_ROOT]/toolkit", "--git-dir", "[SL
AVE_BUILD_ROOT]/toolkit/.git", "submodule", "update", "--init", "--recursive"], | 28 "cmd": ["git", "--work-tree", "[SLAVE_BUILD_ROOT]/toolkit", "--git-dir", "[SL
AVE_BUILD_ROOT]/toolkit/.git", "submodule", "update", "--init", "--recursive"], |
25 "name": "git submodule" | 29 "name": "git submodule", |
| 30 "seed_steps": [] |
26 }, | 31 }, |
27 { | 32 { |
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"], | 33 "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", | 34 "cwd": "[SLAVE_BUILD_ROOT]/toolkit", |
30 "name": "gen step(gen_steps.py)" | 35 "name": "gen step(gen_steps.py)" |
31 }, | 36 }, |
32 { | 37 { |
33 "cmd": ["bogus.py", "--arg"], | 38 "cmd": ["bogus.py", "--arg"], |
34 "name": "bogus", | 39 "name": "bogus", |
35 "seed_steps": ["bogus"] | 40 "seed_steps": ["bogus"] |
36 } | 41 } |
37 ] | 42 ] |
OLD | NEW |