| 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.swarm", | 8 "chromium.swarm", |
| 9 "--builder", | 9 "--builder", |
| 10 "IOS deterministic build", | 10 "IOS deterministic build", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 }, | 63 }, |
| 64 { | 64 { |
| 65 "cmd": [ | 65 "cmd": [ |
| 66 "python", | 66 "python", |
| 67 "-u", | 67 "-u", |
| 68 "[DEPOT_TOOLS]/gclient.py", | 68 "[DEPOT_TOOLS]/gclient.py", |
| 69 "runhooks" | 69 "runhooks" |
| 70 ], | 70 ], |
| 71 "env": { | 71 "env": { |
| 72 "GYP_CROSSCOMPILE": "1", | 72 "GYP_CROSSCOMPILE": "1", |
| 73 "GYP_DEFINES": "OS=ios chromium_ios_signing=0 component=static_library don
t_embed_build_metadata=1", | 73 "GYP_DEFINES": "OS=ios chromium_ios_signing=0 component=static_library don
t_embed_build_metadata=1 test_isolation_mode=prepare", |
| 74 "GYP_GENERATORS": "ninja", | 74 "GYP_GENERATORS": "ninja", |
| 75 "GYP_GENERATOR_FLAGS": "xcode_project_version=3.2" | 75 "GYP_GENERATOR_FLAGS": "xcode_project_version=3.2" |
| 76 }, | 76 }, |
| 77 "name": "gclient runhooks" | 77 "name": "gclient runhooks" |
| 78 }, | 78 }, |
| 79 { | 79 { |
| 80 "cmd": [ | 80 "cmd": [ |
| 81 "python", | 81 "python", |
| 82 "-u", | 82 "-u", |
| 83 "[BUILD]/scripts/slave/compile.py", | 83 "[BUILD]/scripts/slave/compile.py", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 103 "--src-dir", | 103 "--src-dir", |
| 104 "[SLAVE_BUILD]/src" | 104 "[SLAVE_BUILD]/src" |
| 105 ], | 105 ], |
| 106 "cwd": "[SLAVE_BUILD]", | 106 "cwd": "[SLAVE_BUILD]", |
| 107 "name": "remove_build_metadata" | 107 "name": "remove_build_metadata" |
| 108 }, | 108 }, |
| 109 { | 109 { |
| 110 "cmd": [ | 110 "cmd": [ |
| 111 "python", | 111 "python", |
| 112 "-u", | 112 "-u", |
| 113 "\nimport glob\nimport sys\nwith open(sys.argv[1], 'w') as f:\n f.write('
\\n'.join(glob.glob(sys.argv[2])))\n", |
| 114 "/path/to/tmp/", |
| 115 "[SLAVE_BUILD]/src/out/Release/*.isolated.gen.json" |
| 116 ], |
| 117 "name": "find isolated targets" |
| 118 }, |
| 119 { |
| 120 "cmd": [ |
| 121 "python", |
| 122 "-u", |
| 123 "[SLAVE_BUILD]/src/tools/swarming_client/isolate.py", |
| 124 "batcharchive", |
| 125 "--dump-json", |
| 126 "/path/to/tmp/json", |
| 127 "--isolate-server", |
| 128 "https://isolateserver.appspot.com", |
| 129 "[SLAVE_BUILD]/src/out/Release/dummy_target_1.isolated.gen.json", |
| 130 "[SLAVE_BUILD]/src/out/Release/dummy_target_2.isolated.gen.json" |
| 131 ], |
| 132 "name": "isolate tests", |
| 133 "~followup_annotations": [ |
| 134 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 135 "@@@STEP_LOG_LINE@json.output@ \"dummy_target_1\": \"[dummy hash for dumm
y_target_1]\", @@@", |
| 136 "@@@STEP_LOG_LINE@json.output@ \"dummy_target_2\": \"[dummy hash for dumm
y_target_2]\"@@@", |
| 137 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 138 "@@@STEP_LOG_END@json.output@@@", |
| 139 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"dummy_target_1\": \"[dummy hash for
dummy_target_1]\", \"dummy_target_2\": \"[dummy hash for dummy_target_2]\"}@@@" |
| 140 ] |
| 141 }, |
| 142 { |
| 143 "cmd": [ |
| 144 "python", |
| 145 "-u", |
| 113 "\nimport os\nimport shutil\nimport sys\nif os.path.exists(sys.argv[2]):\n
shutil.rmtree(sys.argv[2])\nshutil.move(sys.argv[1], sys.argv[2])", | 146 "\nimport os\nimport shutil\nimport sys\nif os.path.exists(sys.argv[2]):\n
shutil.rmtree(sys.argv[2])\nshutil.move(sys.argv[1], sys.argv[2])", |
| 114 "[SLAVE_BUILD]/src/out/Release", | 147 "[SLAVE_BUILD]/src/out/Release", |
| 115 "[SLAVE_BUILD]/src/out/Release.1" | 148 "[SLAVE_BUILD]/src/out/Release.1" |
| 116 ], | 149 ], |
| 117 "name": "Move [SLAVE_BUILD]/src/out/Release to [SLAVE_BUILD]/src/out/Release
.1", | 150 "name": "Move [SLAVE_BUILD]/src/out/Release to [SLAVE_BUILD]/src/out/Release
.1", |
| 118 "~followup_annotations": [ | 151 "~followup_annotations": [ |
| 119 "@@@STEP_LOG_LINE@python.inline@@@@", | 152 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 120 "@@@STEP_LOG_LINE@python.inline@import os@@@", | 153 "@@@STEP_LOG_LINE@python.inline@import os@@@", |
| 121 "@@@STEP_LOG_LINE@python.inline@import shutil@@@", | 154 "@@@STEP_LOG_LINE@python.inline@import shutil@@@", |
| 122 "@@@STEP_LOG_LINE@python.inline@import sys@@@", | 155 "@@@STEP_LOG_LINE@python.inline@import sys@@@", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 "[SLAVE_BUILD]/src/out/Release.1", | 205 "[SLAVE_BUILD]/src/out/Release.1", |
| 173 "--second-build-dir", | 206 "--second-build-dir", |
| 174 "[SLAVE_BUILD]/src/out/Release.2", | 207 "[SLAVE_BUILD]/src/out/Release.2", |
| 175 "--target-platform", | 208 "--target-platform", |
| 176 "ios" | 209 "ios" |
| 177 ], | 210 ], |
| 178 "cwd": "[SLAVE_BUILD]", | 211 "cwd": "[SLAVE_BUILD]", |
| 179 "name": "compare_build_artifacts" | 212 "name": "compare_build_artifacts" |
| 180 } | 213 } |
| 181 ] | 214 ] |
| OLD | NEW |