| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "[BUILD_ROOT]/scripts/slave/git_setup.py", | 6 "[BUILD]/scripts/slave/git_setup.py", |
| 7 "--path", | 7 "--path", |
| 8 "[SLAVE_BUILD_ROOT]/src", | 8 "[SLAVE_BUILD]/src", |
| 9 "--url", | 9 "--url", |
| 10 "https://chromium.googlesource.com/chromium/src.git" | 10 "https://chromium.googlesource.com/chromium/src.git" |
| 11 ], | 11 ], |
| 12 "name": "git setup", | 12 "name": "git setup", |
| 13 "seed_steps": [ | 13 "seed_steps": [ |
| 14 "git setup", | 14 "git setup", |
| 15 "git fetch", | 15 "git fetch", |
| 16 "git update-ref", | 16 "git update-ref", |
| 17 "git clean", | 17 "git clean", |
| 18 "git checkout", | 18 "git checkout", |
| 19 "git submodule" | 19 "git submodule" |
| 20 ] | 20 ] |
| 21 }, | 21 }, |
| 22 { | 22 { |
| 23 "cmd": [ | 23 "cmd": [ |
| 24 "git", | 24 "git", |
| 25 "fetch", | 25 "fetch", |
| 26 "origin", | 26 "origin", |
| 27 "--recurse-submodules" | 27 "--recurse-submodules" |
| 28 ], | 28 ], |
| 29 "cwd": "[SLAVE_BUILD_ROOT]/src", | 29 "cwd": "[SLAVE_BUILD]/src", |
| 30 "name": "git fetch" | 30 "name": "git fetch" |
| 31 }, | 31 }, |
| 32 { | 32 { |
| 33 "cmd": [ | 33 "cmd": [ |
| 34 "git", | 34 "git", |
| 35 "update-ref", | 35 "update-ref", |
| 36 "refs/heads/master", | 36 "refs/heads/master", |
| 37 "origin/master" | 37 "origin/master" |
| 38 ], | 38 ], |
| 39 "cwd": "[SLAVE_BUILD_ROOT]/src", | 39 "cwd": "[SLAVE_BUILD]/src", |
| 40 "name": "git update-ref" | 40 "name": "git update-ref" |
| 41 }, | 41 }, |
| 42 { | 42 { |
| 43 "cmd": [ | 43 "cmd": [ |
| 44 "git", | 44 "git", |
| 45 "clean", | 45 "clean", |
| 46 "-f", | 46 "-f", |
| 47 "-d", | 47 "-d", |
| 48 "-x" | 48 "-x" |
| 49 ], | 49 ], |
| 50 "cwd": "[SLAVE_BUILD_ROOT]/src", | 50 "cwd": "[SLAVE_BUILD]/src", |
| 51 "name": "git clean" | 51 "name": "git clean" |
| 52 }, | 52 }, |
| 53 { | 53 { |
| 54 "cmd": [ | 54 "cmd": [ |
| 55 "git", | 55 "git", |
| 56 "checkout", | 56 "checkout", |
| 57 "-f", | 57 "-f", |
| 58 "master" | 58 "master" |
| 59 ], | 59 ], |
| 60 "cwd": "[SLAVE_BUILD_ROOT]/src", | 60 "cwd": "[SLAVE_BUILD]/src", |
| 61 "name": "git checkout" | 61 "name": "git checkout" |
| 62 }, | 62 }, |
| 63 { | 63 { |
| 64 "cmd": [ | 64 "cmd": [ |
| 65 "git", | 65 "git", |
| 66 "submodule", | 66 "submodule", |
| 67 "update", | 67 "update", |
| 68 "--init", | 68 "--init", |
| 69 "--recursive" | 69 "--recursive" |
| 70 ], | 70 ], |
| 71 "cwd": "[SLAVE_BUILD_ROOT]/src", | 71 "cwd": "[SLAVE_BUILD]/src", |
| 72 "name": "git submodule" | 72 "name": "git submodule" |
| 73 }, | 73 }, |
| 74 { | 74 { |
| 75 "cmd": [ | 75 "cmd": [ |
| 76 "git", | 76 "git", |
| 77 "status" | 77 "status" |
| 78 ], | 78 ], |
| 79 "cwd": "[SLAVE_BUILD_ROOT]/src", | 79 "cwd": "[SLAVE_BUILD]/src", |
| 80 "name": "git status" | 80 "name": "git status" |
| 81 } | 81 } |
| 82 ] | 82 ] |
| OLD | NEW |