| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "[BUILD]/scripts/slave/git_setup.py", | 6 "[BUILD]/scripts/slave/git_setup.py", |
| 7 "--path", | 7 "--path", |
| 8 "[TMP_BASE]/patch_tmp_1", | 8 "[TMP_BASE]/patch_tmp_1", |
| 9 "--url", | 9 "--url", |
| 10 "http://patch.url/" | 10 "http://patch.url/" |
| 11 ], | 11 ], |
| 12 "cwd": "[SLAVE_BUILD]", |
| 12 "name": "patch git setup" | 13 "name": "patch git setup" |
| 13 }, | 14 }, |
| 14 { | 15 { |
| 15 "cmd": [ | 16 "cmd": [ |
| 16 "git", | 17 "git", |
| 17 "fetch", | 18 "fetch", |
| 18 "origin", | 19 "origin", |
| 19 "johndoe#123.diff" | 20 "johndoe#123.diff" |
| 20 ], | 21 ], |
| 21 "cwd": "[TMP_BASE]/patch_tmp_1", | 22 "cwd": "[TMP_BASE]/patch_tmp_1", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 48 "--dir", | 49 "--dir", |
| 49 "[SLAVE_BUILD]", | 50 "[SLAVE_BUILD]", |
| 50 "--force", | 51 "--force", |
| 51 "--forward", | 52 "--forward", |
| 52 "--remove-empty-files", | 53 "--remove-empty-files", |
| 53 "--strip", | 54 "--strip", |
| 54 "0", | 55 "0", |
| 55 "--input", | 56 "--input", |
| 56 "[TMP_BASE]/patch_tmp_1/patch.diff" | 57 "[TMP_BASE]/patch_tmp_1/patch.diff" |
| 57 ], | 58 ], |
| 59 "cwd": "[SLAVE_BUILD]", |
| 58 "name": "apply patch" | 60 "name": "apply patch" |
| 59 }, | 61 }, |
| 60 { | 62 { |
| 61 "cmd": [ | 63 "cmd": [ |
| 62 "rm", | 64 "rm", |
| 63 "-rf", | 65 "-rf", |
| 64 "[TMP_BASE]/patch_tmp_1" | 66 "[TMP_BASE]/patch_tmp_1" |
| 65 ], | 67 ], |
| 68 "cwd": "[SLAVE_BUILD]", |
| 66 "name": "remove patch" | 69 "name": "remove patch" |
| 67 } | 70 } |
| 68 ] | 71 ] |
| OLD | NEW |