OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "\nimport os, sys\n\nbuild_path = sys.argv[1]\nif os.path.exists(build_pat
h):\n for (path, dir, files) in os.walk(build_path):\n for cur_file in files
:\n if cur_file.endswith('index.lock'):\n path_to_file = os.path.joi
n(path, cur_file)\n print 'deleting %s' % path_to_file\n os.remove
(path_to_file)\n", | 6 "\nimport os, sys\n\nbuild_path = sys.argv[1]\nif os.path.exists(build_pat
h):\n for (path, dir, files) in os.walk(build_path):\n for cur_file in files
:\n if cur_file.endswith('index.lock'):\n path_to_file = os.path.joi
n(path, cur_file)\n print 'deleting %s' % path_to_file\n os.remove
(path_to_file)\n", |
7 "[SLAVE_BUILD]" | 7 "[SLAVE_BUILD]" |
8 ], | 8 ], |
9 "cwd": "[SLAVE_BUILD]", | 9 "cwd": "[SLAVE_BUILD]", |
10 "name": "cleanup index.lock", | 10 "name": "cleanup index.lock", |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 "--src-dir", | 155 "--src-dir", |
156 "[SLAVE_BUILD]/src", | 156 "[SLAVE_BUILD]/src", |
157 "--goma-cache-dir", | 157 "--goma-cache-dir", |
158 "[GOMA_CACHE]", | 158 "[GOMA_CACHE]", |
159 "--build-tool", | 159 "--build-tool", |
160 "ninja", | 160 "ninja", |
161 "--compiler", | 161 "--compiler", |
162 "goma", | 162 "goma", |
163 "--goma-jsonstatus", | 163 "--goma-jsonstatus", |
164 "/path/to/tmp/json", | 164 "/path/to/tmp/json", |
165 "--goma-service-account-json-file", | |
166 "/creds/service_accounts/service-account-goma-client.json", | |
167 "--goma-dir", | 165 "--goma-dir", |
168 "[BUILD]/goma", | 166 "[BUILD]/goma", |
169 "--", | 167 "--", |
170 "content_shell_apk" | 168 "content_shell_apk" |
171 ], | 169 ], |
172 "cwd": "[SLAVE_BUILD]", | 170 "cwd": "[SLAVE_BUILD]", |
173 "env": { | 171 "env": { |
174 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" | 172 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
175 }, | 173 }, |
176 "name": "compile", | 174 "name": "compile", |
(...skipping 12 matching lines...) Expand all Loading... |
189 ], | 187 ], |
190 "cwd": "[SLAVE_BUILD]", | 188 "cwd": "[SLAVE_BUILD]", |
191 "name": "dartium_test" | 189 "name": "dartium_test" |
192 }, | 190 }, |
193 { | 191 { |
194 "name": "$result", | 192 "name": "$result", |
195 "recipe_result": null, | 193 "recipe_result": null, |
196 "status_code": 0 | 194 "status_code": 0 |
197 } | 195 } |
198 ] | 196 ] |
OLD | NEW |