| 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.fyi", | 8 "chromium.fyi", |
| 9 "--builder", | 9 "--builder", |
| 10 "Linux Trusty", | 10 "Linux Trusty", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "-u", | 99 "-u", |
| 100 "[BUILD]/scripts/slave/compile.py", | 100 "[BUILD]/scripts/slave/compile.py", |
| 101 "--target", | 101 "--target", |
| 102 "Release", | 102 "Release", |
| 103 "--src-dir", | 103 "--src-dir", |
| 104 "[SLAVE_BUILD]/src", | 104 "[SLAVE_BUILD]/src", |
| 105 "--build-tool", | 105 "--build-tool", |
| 106 "ninja", | 106 "ninja", |
| 107 "--", | 107 "--", |
| 108 "all", | 108 "all", |
| 109 "chrome" | 109 "chrome", |
| 110 "mojo_public_test_interfaces", |
| 111 "mojo_python" |
| 110 ], | 112 ], |
| 111 "name": "compile" | 113 "name": "compile" |
| 112 }, | 114 }, |
| 113 { | 115 { |
| 114 "cmd": [ | 116 "cmd": [ |
| 115 "python", | 117 "python", |
| 116 "-u", | 118 "-u", |
| 117 "[SLAVE_BUILD]/src/buildtools/checkdeps/checkdeps.py", | 119 "[SLAVE_BUILD]/src/buildtools/checkdeps/checkdeps.py", |
| 118 "--json", | 120 "--json", |
| 119 "/path/to/tmp/json" | 121 "/path/to/tmp/json" |
| 120 ], | 122 ], |
| 121 "name": "checkdeps", | 123 "name": "checkdeps", |
| 122 "~followup_annotations": [ | 124 "~followup_annotations": [ |
| 123 "@@@STEP_LOG_LINE@json.output@[]@@@", | 125 "@@@STEP_LOG_LINE@json.output@[]@@@", |
| 124 "@@@STEP_LOG_END@json.output@@@" | 126 "@@@STEP_LOG_END@json.output@@@" |
| 125 ] | 127 ] |
| 126 }, | 128 }, |
| 127 { | 129 { |
| 128 "cmd": [ | 130 "cmd": [ |
| 129 "python", | 131 "python", |
| 130 "-u", | 132 "-u", |
| 131 "[SLAVE_BUILD]/src/mojo/tools/run_mojo_python_tests.py", | 133 "[SLAVE_BUILD]/src/mojo/tools/run_mojo_python_tests.py", |
| 132 "--write-full-results-to", | 134 "--write-full-results-to", |
| 133 "/path/to/tmp/json" | 135 "/path/to/tmp/json" |
| 134 ], | 136 ], |
| 135 "name": "mojo_python_tests" | 137 "name": "mojo_python_tests" |
| 136 }, | 138 }, |
| 137 { | 139 { |
| 140 "cmd": [ |
| 141 "python", |
| 142 "-u", |
| 143 "[SLAVE_BUILD]/src/mojo/tools/run_mojo_python_bindings_tests.py", |
| 144 "--write-full-results-to", |
| 145 "/path/to/tmp/json", |
| 146 "--build-dir", |
| 147 "[SLAVE_BUILD]/src/out" |
| 148 ], |
| 149 "name": "mojo_python_bindings_tests" |
| 150 }, |
| 151 { |
| 138 "allow_subannotations": true, | 152 "allow_subannotations": true, |
| 139 "cmd": [ | 153 "cmd": [ |
| 140 "python", | 154 "python", |
| 141 "-u", | 155 "-u", |
| 142 "[BUILD]/scripts/slave/runtest.py", | 156 "[BUILD]/scripts/slave/runtest.py", |
| 143 "--target", | 157 "--target", |
| 144 "Release", | 158 "Release", |
| 145 "--xvfb", | 159 "--xvfb", |
| 146 "--factory-properties", | 160 "--factory-properties", |
| 147 "{\"blamelist\": [\"cool_dev1337@chromium.org\", \"hax@chromium.org\"], \"
buildername\": \"Linux Trusty\", \"buildnumber\": 571, \"mastername\": \"chromiu
m.fyi\", \"parent_buildername\": null, \"recipe\": \"chromium\", \"slavename\":
\"TestSlavename\", \"workdir\": \"/path/to/workdir/TestSlavename\"}", | 161 "{\"blamelist\": [\"cool_dev1337@chromium.org\", \"hax@chromium.org\"], \"
buildername\": \"Linux Trusty\", \"buildnumber\": 571, \"mastername\": \"chromiu
m.fyi\", \"parent_buildername\": null, \"recipe\": \"chromium\", \"slavename\":
\"TestSlavename\", \"workdir\": \"/path/to/workdir/TestSlavename\"}", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 "--metadata", | 216 "--metadata", |
| 203 "blink_revision=124383", | 217 "blink_revision=124383", |
| 204 "--metadata", | 218 "--metadata", |
| 205 "build_number=571", | 219 "build_number=571", |
| 206 "--write-full-results-to", | 220 "--write-full-results-to", |
| 207 "/path/to/tmp/json" | 221 "/path/to/tmp/json" |
| 208 ], | 222 ], |
| 209 "name": "telemetry_perf_unittests" | 223 "name": "telemetry_perf_unittests" |
| 210 } | 224 } |
| 211 ] | 225 ] |
| OLD | NEW |