| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "[BUILD]\\scripts\\slave\\kill_processes.py" | 6 "[BUILD]\\scripts\\slave\\kill_processes.py" |
| 7 ], | 7 ], |
| 8 "cwd": "[SLAVE_BUILD]", | 8 "cwd": "[SLAVE_BUILD]", |
| 9 "name": "taskkill" | 9 "name": "taskkill" |
| 10 }, | 10 }, |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 }, | 86 }, |
| 87 { | 87 { |
| 88 "cmd": [ | 88 "cmd": [ |
| 89 "python", | 89 "python", |
| 90 "-u", | 90 "-u", |
| 91 "[DEPOT_TOOLS]\\gclient.py", | 91 "[DEPOT_TOOLS]\\gclient.py", |
| 92 "runhooks" | 92 "runhooks" |
| 93 ], | 93 ], |
| 94 "cwd": "[SLAVE_BUILD]", | 94 "cwd": "[SLAVE_BUILD]", |
| 95 "env": { | 95 "env": { |
| 96 "GYP_DEFINES": "component=static_library target_arch=x64 test_isolation_mo
de=prepare" | 96 "GYP_DEFINES": "component=static_library target_arch=ia32 test_isolation_m
ode=prepare" |
| 97 }, | 97 }, |
| 98 "name": "gclient runhooks" | 98 "name": "gclient runhooks" |
| 99 }, | 99 }, |
| 100 { | 100 { |
| 101 "cmd": [ | 101 "cmd": [ |
| 102 "python", | 102 "python", |
| 103 "-u", | 103 "-u", |
| 104 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 104 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 105 "[SLAVE_BUILD]\\src\\testing\\buildbot\\chromium.fyi.json", | 105 "[SLAVE_BUILD]\\src\\testing\\buildbot\\chromium.fyi.json", |
| 106 "/path/to/tmp/json" | 106 "/path/to/tmp/json" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 126 }, | 126 }, |
| 127 { | 127 { |
| 128 "cmd": [ | 128 "cmd": [ |
| 129 "python", | 129 "python", |
| 130 "-u", | 130 "-u", |
| 131 "[SLAVE_BUILD]\\src\\testing\\scripts\\get_compile_targets.py", | 131 "[SLAVE_BUILD]\\src\\testing\\scripts\\get_compile_targets.py", |
| 132 "--output", | 132 "--output", |
| 133 "/path/to/tmp/json", | 133 "/path/to/tmp/json", |
| 134 "--", | 134 "--", |
| 135 "--build-config-fs", | 135 "--build-config-fs", |
| 136 "Release_x64", | 136 "Release", |
| 137 "--paths", | 137 "--paths", |
| 138 "{\"build\": \"[BUILD]\", \"checkout\": \"[SLAVE_BUILD]\\\\src\"}", | 138 "{\"build\": \"[BUILD]\", \"checkout\": \"[SLAVE_BUILD]\\\\src\"}", |
| 139 "--properties", | 139 "--properties", |
| 140 "{\"buildername\": \"CrWinClangLLD tester\", \"buildnumber\": 571, \"maste
rname\": \"chromium.fyi\", \"slavename\": \"TestSlavename\", \"target_platform\"
: \"win\"}" | 140 "{\"buildername\": \"CrWinClangLLD tester\", \"buildnumber\": 571, \"maste
rname\": \"chromium.fyi\", \"slavename\": \"TestSlavename\", \"target_platform\"
: \"win\"}" |
| 141 ], | 141 ], |
| 142 "cwd": "[SLAVE_BUILD]", | 142 "cwd": "[SLAVE_BUILD]", |
| 143 "name": "get compile targets for scripts", | 143 "name": "get compile targets for scripts", |
| 144 "~followup_annotations": [ | 144 "~followup_annotations": [ |
| 145 "@@@STEP_LOG_LINE@json.output@{}@@@", | 145 "@@@STEP_LOG_LINE@json.output@{}@@@", |
| 146 "@@@STEP_LOG_END@json.output@@@" | 146 "@@@STEP_LOG_END@json.output@@@" |
| 147 ] | 147 ] |
| 148 }, | 148 }, |
| 149 { | 149 { |
| 150 "cmd": [ | 150 "cmd": [ |
| 151 "python", | 151 "python", |
| 152 "-u", | 152 "-u", |
| 153 "[BUILD]\\scripts\\slave\\cleanup_temp.py" | 153 "[BUILD]\\scripts\\slave\\cleanup_temp.py" |
| 154 ], | 154 ], |
| 155 "cwd": "[SLAVE_BUILD]", | 155 "cwd": "[SLAVE_BUILD]", |
| 156 "name": "cleanup_temp" | 156 "name": "cleanup_temp" |
| 157 }, | 157 }, |
| 158 { | 158 { |
| 159 "cmd": [ | 159 "cmd": [ |
| 160 "python", | 160 "python", |
| 161 "-u", | 161 "-u", |
| 162 "\nimport os, sys\nfrom common import chromium_utils\n\nif os.path.exists(
sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n", | 162 "\nimport os, sys\nfrom common import chromium_utils\n\nif os.path.exists(
sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n", |
| 163 "[SLAVE_BUILD]\\src\\out\\Release_x64" | 163 "[SLAVE_BUILD]\\src\\out\\Release" |
| 164 ], | 164 ], |
| 165 "cwd": "[SLAVE_BUILD]", | 165 "cwd": "[SLAVE_BUILD]", |
| 166 "name": "rmtree build directory", | 166 "name": "rmtree build directory", |
| 167 "~followup_annotations": [ | 167 "~followup_annotations": [ |
| 168 "@@@STEP_LOG_LINE@python.inline@@@@", | 168 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 169 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", | 169 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", |
| 170 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils@@@", | 170 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils@@@", |
| 171 "@@@STEP_LOG_LINE@python.inline@@@@", | 171 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 172 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", | 172 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", |
| 173 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", | 173 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", |
| 174 "@@@STEP_LOG_END@python.inline@@@" | 174 "@@@STEP_LOG_END@python.inline@@@" |
| 175 ] | 175 ] |
| 176 }, | 176 }, |
| 177 { | 177 { |
| 178 "cmd": [ | 178 "cmd": [ |
| 179 "python", | 179 "python", |
| 180 "-u", | 180 "-u", |
| 181 "[BUILD]\\scripts\\slave\\extract_build.py", | 181 "[BUILD]\\scripts\\slave\\extract_build.py", |
| 182 "--target", | 182 "--target", |
| 183 "Release_x64", | 183 "Release", |
| 184 "--build-archive-url", | 184 "--build-archive-url", |
| 185 "gs://test-domain/test-archive.zip", | 185 "gs://test-domain/test-archive.zip", |
| 186 "--master-name", | 186 "--master-name", |
| 187 "chromium.fyi", | 187 "chromium.fyi", |
| 188 "--build-number", | 188 "--build-number", |
| 189 "571" | 189 "571" |
| 190 ], | 190 ], |
| 191 "cwd": "[SLAVE_BUILD]", | 191 "cwd": "[SLAVE_BUILD]", |
| 192 "name": "extract build" | 192 "name": "extract build" |
| 193 }, | 193 }, |
| 194 { | 194 { |
| 195 "cmd": [ | 195 "cmd": [ |
| 196 "python", | 196 "python", |
| 197 "-u", | 197 "-u", |
| 198 "RECIPE_MODULE[isolate]\\resources\\find_isolated_tests.py", | 198 "RECIPE_MODULE[isolate]\\resources\\find_isolated_tests.py", |
| 199 "--build-dir", | 199 "--build-dir", |
| 200 "[SLAVE_BUILD]\\src\\out\\Release_x64", | 200 "[SLAVE_BUILD]\\src\\out\\Release", |
| 201 "--output-json", | 201 "--output-json", |
| 202 "/path/to/tmp/json" | 202 "/path/to/tmp/json" |
| 203 ], | 203 ], |
| 204 "cwd": "[SLAVE_BUILD]", | 204 "cwd": "[SLAVE_BUILD]", |
| 205 "name": "find isolated tests", | 205 "name": "find isolated tests", |
| 206 "~followup_annotations": [ | 206 "~followup_annotations": [ |
| 207 "@@@STEP_LOG_LINE@json.output@{@@@", | 207 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 208 "@@@STEP_LOG_LINE@json.output@ \"dummy_target_1\": \"[dummy hash for dumm
y_target_1]\", @@@", | 208 "@@@STEP_LOG_LINE@json.output@ \"dummy_target_1\": \"[dummy hash for dumm
y_target_1]\", @@@", |
| 209 "@@@STEP_LOG_LINE@json.output@ \"dummy_target_2\": \"[dummy hash for dumm
y_target_2]\"@@@", | 209 "@@@STEP_LOG_LINE@json.output@ \"dummy_target_2\": \"[dummy hash for dumm
y_target_2]\"@@@", |
| 210 "@@@STEP_LOG_LINE@json.output@}@@@", | 210 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 211 "@@@STEP_LOG_END@json.output@@@", | 211 "@@@STEP_LOG_END@json.output@@@", |
| 212 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"dummy_target_1\": \"[dummy hash for
dummy_target_1]\", \"dummy_target_2\": \"[dummy hash for dummy_target_2]\"}@@@" | 212 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"dummy_target_1\": \"[dummy hash for
dummy_target_1]\", \"dummy_target_2\": \"[dummy hash for dummy_target_2]\"}@@@" |
| 213 ] | 213 ] |
| 214 }, | 214 }, |
| 215 { | 215 { |
| 216 "cmd": [ | 216 "cmd": [ |
| 217 "python", | 217 "python", |
| 218 "-u", | 218 "-u", |
| 219 "[BUILD]\\scripts\\slave\\chromium\\run_crash_handler.py", | 219 "[BUILD]\\scripts\\slave\\chromium\\run_crash_handler.py", |
| 220 "--target", | 220 "--target", |
| 221 "Release_x64" | 221 "Release" |
| 222 ], | 222 ], |
| 223 "cwd": "[SLAVE_BUILD]", | 223 "cwd": "[SLAVE_BUILD]", |
| 224 "name": "start_crash_service" | 224 "name": "start_crash_service" |
| 225 }, | 225 }, |
| 226 { | 226 { |
| 227 "cmd": [ | 227 "cmd": [ |
| 228 "python", | 228 "python", |
| 229 "-u", | 229 "-u", |
| 230 "[SLAVE_BUILD]\\src\\tools\\swarming_client\\swarming.py", | 230 "[SLAVE_BUILD]\\src\\tools\\swarming_client\\swarming.py", |
| 231 "trigger", | 231 "trigger", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 ], | 323 ], |
| 324 "cwd": "[SLAVE_BUILD]", | 324 "cwd": "[SLAVE_BUILD]", |
| 325 "name": "browser_tests" | 325 "name": "browser_tests" |
| 326 }, | 326 }, |
| 327 { | 327 { |
| 328 "cmd": [ | 328 "cmd": [ |
| 329 "python", | 329 "python", |
| 330 "-u", | 330 "-u", |
| 331 "[BUILD]\\scripts\\slave\\process_dumps.py", | 331 "[BUILD]\\scripts\\slave\\process_dumps.py", |
| 332 "--target", | 332 "--target", |
| 333 "Release_x64" | 333 "Release" |
| 334 ], | 334 ], |
| 335 "cwd": "[SLAVE_BUILD]", | 335 "cwd": "[SLAVE_BUILD]", |
| 336 "name": "process_dumps" | 336 "name": "process_dumps" |
| 337 } | 337 } |
| 338 ] | 338 ] |
| OLD | NEW |