| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "[BUILD]/scripts/slave/bot_update.py", | 6 "[BUILD]/scripts/slave/bot_update.py", |
| 7 "--master", | 7 "--master", |
| 8 "chromiumos.tryserver", | 8 "chromiumos.tryserver", |
| 9 "--builder", | 9 "--builder", |
| 10 "full", | 10 "full", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 { | 40 { |
| 41 "cmd": [ | 41 "cmd": [ |
| 42 "git", | 42 "git", |
| 43 "checkout", | 43 "checkout", |
| 44 "master" | 44 "master" |
| 45 ], | 45 ], |
| 46 "cwd": "[SLAVE_BUILD]/chromite", | 46 "cwd": "[SLAVE_BUILD]/chromite", |
| 47 "name": "checkout chromite branch [master]" | 47 "name": "checkout chromite branch [master]" |
| 48 }, | 48 }, |
| 49 { | 49 { |
| 50 "cmd": [ |
| 51 "python", |
| 52 "-u", |
| 53 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 54 "[SLAVE_BUILD]/chromite/cbuildbot/config_dump.json", |
| 55 "/path/to/tmp/json" |
| 56 ], |
| 57 "cwd": "[SLAVE_BUILD]", |
| 58 "name": "read chromite config", |
| 59 "~followup_annotations": [ |
| 60 "@@@STEP_LOG_LINE@config@{@@@", |
| 61 "@@@STEP_LOG_LINE@config@ \"x86-generic-full\": {}@@@", |
| 62 "@@@STEP_LOG_LINE@config@}@@@", |
| 63 "@@@STEP_LOG_END@config@@@" |
| 64 ] |
| 65 }, |
| 66 { |
| 50 "allow_subannotations": true, | 67 "allow_subannotations": true, |
| 51 "cmd": [ | 68 "cmd": [ |
| 52 "[SLAVE_BUILD]/chromite/bin/cbuildbot", | 69 "[SLAVE_BUILD]/chromite/bin/cbuildbot", |
| 53 "--buildroot", | 70 "--buildroot", |
| 54 "[ROOT]/cbuild/external_master", | 71 "[ROOT]/cbuild/external_master", |
| 55 "--timeout", | 72 "--timeout", |
| 56 "14400", | 73 "14400", |
| 57 "--remote-trybot", | 74 "--remote-trybot", |
| 58 "--remote-version=4", | 75 "--remote-version=4", |
| 59 "x86-generic-full" | 76 "x86-generic-full" |
| 60 ], | 77 ], |
| 61 "name": "cbuildbot [x86-generic-full]" | 78 "name": "cbuildbot [x86-generic-full]" |
| 62 } | 79 } |
| 63 ] | 80 ] |
| OLD | NEW |