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 "chromium.chrome", | 8 "chromium.chrome", |
9 "--builder", | 9 "--builder", |
10 "Google Chrome Linux", | 10 "Google Chrome Linux", |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 "-u", | 114 "-u", |
115 "[BUILD]/scripts/slave/cleanup_temp.py" | 115 "[BUILD]/scripts/slave/cleanup_temp.py" |
116 ], | 116 ], |
117 "cwd": "[SLAVE_BUILD]", | 117 "cwd": "[SLAVE_BUILD]", |
118 "name": "cleanup_temp" | 118 "name": "cleanup_temp" |
119 }, | 119 }, |
120 { | 120 { |
121 "cmd": [ | 121 "cmd": [ |
122 "python", | 122 "python", |
123 "-u", | 123 "-u", |
124 "import sys; sys.exit(1)" | 124 "[BUILD]/scripts/slave/compile.py", |
| 125 "--target", |
| 126 "Release", |
| 127 "--src-dir", |
| 128 "[SLAVE_BUILD]/src", |
| 129 "--build-tool", |
| 130 "ninja", |
| 131 "--compiler", |
| 132 "goma", |
| 133 "--mode", |
| 134 "official", |
| 135 "--goma-dir", |
| 136 "[BUILD]/goma", |
| 137 "--clobber", |
| 138 "--", |
| 139 "linux_packages_all" |
125 ], | 140 ], |
126 "cwd": "[SLAVE_BUILD]", | 141 "cwd": "[SLAVE_BUILD]", |
127 "name": "compile", | 142 "name": "compile" |
128 "~followup_annotations": [ | |
129 "step returned non-zero exit code: 1", | |
130 "@@@STEP_TEXT@Misconfigured bot: no compile targets@@@", | |
131 "@@@STEP_FAILURE@@@" | |
132 ] | |
133 }, | |
134 { | |
135 "name": "$final_result", | |
136 "reason": "Step('compile') failed with return_code 1", | |
137 "status_code": 1 | |
138 } | 143 } |
139 ] | 144 ] |
OLD | NEW |