Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(595)

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/example.expected/basic_builder_basic.json

Issue 2304063002: Revert "Avoid to use environment." (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "name": "cleanup index.lock", 9 "name": "cleanup index.lock",
10 "~followup_annotations": [ 10 "~followup_annotations": [
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 "--gsutil-py-path", 206 "--gsutil-py-path",
207 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", 207 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py",
208 "--ninja-path", 208 "--ninja-path",
209 "RECIPE_PACKAGE_REPO[depot_tools]/ninja", 209 "RECIPE_PACKAGE_REPO[depot_tools]/ninja",
210 "--target", 210 "--target",
211 "Release", 211 "Release",
212 "--src-dir", 212 "--src-dir",
213 "[SLAVE_BUILD]/src", 213 "[SLAVE_BUILD]/src",
214 "--goma-cache-dir", 214 "--goma-cache-dir",
215 "[GOMA_CACHE]", 215 "[GOMA_CACHE]",
216 "--buildbot-buildername",
217 "basic_builder",
218 "--buildbot-mastername",
219 "chromium.testing.master",
220 "--buildbot-slavename",
221 "tehslave",
222 "--goma-fail-fast", 216 "--goma-fail-fast",
223 "--goma-disable-local-fallback", 217 "--goma-disable-local-fallback",
224 "--" 218 "--"
225 ], 219 ],
226 "env": { 220 "env": {
227 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 221 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
228 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 222 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
229 }, 223 },
230 "name": "compile" 224 "name": "compile"
231 }, 225 },
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after
933 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 927 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
934 }, 928 },
935 "name": "stack_tool_for_asan" 929 "name": "stack_tool_for_asan"
936 }, 930 },
937 { 931 {
938 "name": "$result", 932 "name": "$result",
939 "recipe_result": null, 933 "recipe_result": null,
940 "status_code": 0 934 "status_code": 0
941 } 935 }
942 ] 936 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698