| 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" | |
| 112 ], | 110 ], |
| 113 "name": "compile" | 111 "name": "compile" |
| 114 }, | 112 }, |
| 115 { | 113 { |
| 116 "cmd": [ | 114 "cmd": [ |
| 117 "python", | 115 "python", |
| 118 "-u", | 116 "-u", |
| 119 "[SLAVE_BUILD]/src/buildtools/checkdeps/checkdeps.py", | 117 "[SLAVE_BUILD]/src/buildtools/checkdeps/checkdeps.py", |
| 120 "--json", | 118 "--json", |
| 121 "/path/to/tmp/json" | 119 "/path/to/tmp/json" |
| 122 ], | 120 ], |
| 123 "name": "checkdeps", | 121 "name": "checkdeps", |
| 124 "~followup_annotations": [ | 122 "~followup_annotations": [ |
| 125 "@@@STEP_LOG_LINE@json.output@[]@@@", | 123 "@@@STEP_LOG_LINE@json.output@[]@@@", |
| 126 "@@@STEP_LOG_END@json.output@@@" | 124 "@@@STEP_LOG_END@json.output@@@" |
| 127 ] | 125 ] |
| 128 }, | 126 }, |
| 129 { | 127 { |
| 130 "cmd": [ | 128 "cmd": [ |
| 131 "python", | 129 "python", |
| 132 "-u", | 130 "-u", |
| 133 "[SLAVE_BUILD]/src/mojo/tools/run_mojo_python_tests.py", | 131 "[SLAVE_BUILD]/src/mojo/tools/run_mojo_python_tests.py", |
| 134 "--write-full-results-to", | 132 "--write-full-results-to", |
| 135 "/path/to/tmp/json" | 133 "/path/to/tmp/json" |
| 136 ], | 134 ], |
| 137 "name": "mojo_python_tests" | 135 "name": "mojo_python_tests" |
| 138 }, | 136 }, |
| 139 { | 137 { |
| 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 { | |
| 152 "allow_subannotations": true, | 138 "allow_subannotations": true, |
| 153 "cmd": [ | 139 "cmd": [ |
| 154 "python", | 140 "python", |
| 155 "-u", | 141 "-u", |
| 156 "[BUILD]/scripts/slave/runtest.py", | 142 "[BUILD]/scripts/slave/runtest.py", |
| 157 "--target", | 143 "--target", |
| 158 "Release", | 144 "Release", |
| 159 "--xvfb", | 145 "--xvfb", |
| 160 "--factory-properties", | 146 "--factory-properties", |
| 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\"}", | 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\"}", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 "--metadata", | 202 "--metadata", |
| 217 "blink_revision=124383", | 203 "blink_revision=124383", |
| 218 "--metadata", | 204 "--metadata", |
| 219 "build_number=571", | 205 "build_number=571", |
| 220 "--write-full-results-to", | 206 "--write-full-results-to", |
| 221 "/path/to/tmp/json" | 207 "/path/to/tmp/json" |
| 222 ], | 208 ], |
| 223 "name": "telemetry_perf_unittests" | 209 "name": "telemetry_perf_unittests" |
| 224 } | 210 } |
| 225 ] | 211 ] |
| OLD | NEW |