OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", | 6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", |
7 "--master", | 7 "--master", |
8 "client.webrtc", | 8 "client.webrtc", |
9 "--builder", | 9 "--builder", |
10 "Android64 Builder (dbg)", | 10 "Android64 Builder (dbg)", |
11 "--slave", | 11 "--slave", |
12 "slavename", | 12 "slavename", |
13 "--spec", | 13 "--spec", |
14 "cache_dir = '[ROOT]/b/build/slave/cache_dir'\nsolutions = [{'deps_file':
'DEPS', 'managed': True, 'name': 'src', 'url': 'https://chromium.googlesource.co
m/external/webrtc'}, {'deps_file': 'DEPS', 'managed': True, 'name': 'webrtc-limi
ted', 'url': 'https://chrome-internal.googlesource.com/chrome/deps/webrtc-limite
d'}]\ntarget_os = ['android']", | 14 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': 'DEPS', 'managed':
True, 'name': 'src', 'url': 'https://chromium.googlesource.com/external/webrtc'}
, {'deps_file': 'DEPS', 'managed': True, 'name': 'webrtc-limited', 'url': 'https
://chrome-internal.googlesource.com/chrome/deps/webrtc-limited'}]\ntarget_os = [
'android']", |
15 "--root", | 15 "--root", |
16 "src", | 16 "src", |
17 "--revision_mapping_file", | 17 "--revision_mapping_file", |
18 "{\"src\": \"got_revision\"}", | 18 "{\"src\": \"got_revision\"}", |
19 "--git-cache-dir", | 19 "--git-cache-dir", |
20 "[ROOT]/b/build/slave/cache_dir", | 20 "[GIT_CACHE]", |
21 "--output_json", | 21 "--output_json", |
22 "/path/to/tmp/json", | 22 "/path/to/tmp/json", |
23 "--revision", | 23 "--revision", |
24 "src@12345", | 24 "src@12345", |
25 "--output_manifest" | 25 "--output_manifest" |
26 ], | 26 ], |
| 27 "cwd": "[SLAVE_BUILD]", |
27 "env": { | 28 "env": { |
28 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 29 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
29 }, | 30 }, |
30 "name": "bot_update", | 31 "name": "bot_update", |
31 "~followup_annotations": [ | 32 "~followup_annotations": [ |
32 "@@@STEP_TEXT@Some step text@@@", | 33 "@@@STEP_TEXT@Some step text@@@", |
33 "@@@STEP_LOG_LINE@json.output@{@@@", | 34 "@@@STEP_LOG_LINE@json.output@{@@@", |
34 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", | 35 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", |
35 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", | 36 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", |
36 "@@@STEP_LOG_LINE@json.output@ \"src\": \"12345\"@@@", | 37 "@@@STEP_LOG_LINE@json.output@ \"src\": \"12345\"@@@", |
(...skipping 16 matching lines...) Expand all Loading... |
53 "@@@STEP_LOG_END@json.output@@@", | 54 "@@@STEP_LOG_END@json.output@@@", |
54 "@@@SET_BUILD_PROPERTY@got_revision@\"f27fede2220bcd326aee3e86ddfd4ebd0fe5
8cb9\"@@@", | 55 "@@@SET_BUILD_PROPERTY@got_revision@\"f27fede2220bcd326aee3e86ddfd4ebd0fe5
8cb9\"@@@", |
55 "@@@SET_BUILD_PROPERTY@got_revision_cp@\"refs/heads/master@{#170242}\"@@@" | 56 "@@@SET_BUILD_PROPERTY@got_revision_cp@\"refs/heads/master@{#170242}\"@@@" |
56 ] | 57 ] |
57 }, | 58 }, |
58 { | 59 { |
59 "cmd": [ | 60 "cmd": [ |
60 "python", | 61 "python", |
61 "-u", | 62 "-u", |
62 "RECIPE_MODULE[build::webrtc]/resources/cleanup_files.py", | 63 "RECIPE_MODULE[build::webrtc]/resources/cleanup_files.py", |
63 "[CWD]/src/out" | 64 "[SLAVE_BUILD]/src/out" |
64 ], | 65 ], |
| 66 "cwd": "[SLAVE_BUILD]", |
65 "name": "clean test output files" | 67 "name": "clean test output files" |
66 }, | 68 }, |
67 { | 69 { |
68 "cmd": [ | 70 "cmd": [ |
69 "python", | 71 "python", |
70 "-u", | 72 "-u", |
71 "\nimport shutil, sys, os\nshutil.rmtree(sys.argv[1], True)\nshutil.rmtree
(sys.argv[2], True)\ntry:\n os.remove(sys.argv[3])\nexcept OSError:\n pass\nfo
r base, _dirs, files in os.walk(sys.argv[4]):\n for f in files:\n if f.endsw
ith('.pyc'):\n os.remove(os.path.join(base, f))\n", | 73 "\nimport shutil, sys, os\nshutil.rmtree(sys.argv[1], True)\nshutil.rmtree
(sys.argv[2], True)\ntry:\n os.remove(sys.argv[3])\nexcept OSError:\n pass\nfo
r base, _dirs, files in os.walk(sys.argv[4]):\n for f in files:\n if f.endsw
ith('.pyc'):\n os.remove(os.path.join(base, f))\n", |
72 "[CWD]/src/out/Debug/debug_info_dumps", | 74 "[SLAVE_BUILD]/src/out/Debug/debug_info_dumps", |
73 "[CWD]/src/out/Debug/test_logs", | 75 "[SLAVE_BUILD]/src/out/Debug/test_logs", |
74 "[CWD]/src/out/build_product.zip", | 76 "[SLAVE_BUILD]/src/out/build_product.zip", |
75 "[CWD]/src" | 77 "[SLAVE_BUILD]/src" |
76 ], | 78 ], |
| 79 "cwd": "[SLAVE_BUILD]", |
77 "name": "clean local files", | 80 "name": "clean local files", |
78 "~followup_annotations": [ | 81 "~followup_annotations": [ |
79 "@@@STEP_LOG_LINE@python.inline@@@@", | 82 "@@@STEP_LOG_LINE@python.inline@@@@", |
80 "@@@STEP_LOG_LINE@python.inline@import shutil, sys, os@@@", | 83 "@@@STEP_LOG_LINE@python.inline@import shutil, sys, os@@@", |
81 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[1], True)@@@", | 84 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[1], True)@@@", |
82 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[2], True)@@@", | 85 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[2], True)@@@", |
83 "@@@STEP_LOG_LINE@python.inline@try:@@@", | 86 "@@@STEP_LOG_LINE@python.inline@try:@@@", |
84 "@@@STEP_LOG_LINE@python.inline@ os.remove(sys.argv[3])@@@", | 87 "@@@STEP_LOG_LINE@python.inline@ os.remove(sys.argv[3])@@@", |
85 "@@@STEP_LOG_LINE@python.inline@except OSError:@@@", | 88 "@@@STEP_LOG_LINE@python.inline@except OSError:@@@", |
86 "@@@STEP_LOG_LINE@python.inline@ pass@@@", | 89 "@@@STEP_LOG_LINE@python.inline@ pass@@@", |
87 "@@@STEP_LOG_LINE@python.inline@for base, _dirs, files in os.walk(sys.argv
[4]):@@@", | 90 "@@@STEP_LOG_LINE@python.inline@for base, _dirs, files in os.walk(sys.argv
[4]):@@@", |
88 "@@@STEP_LOG_LINE@python.inline@ for f in files:@@@", | 91 "@@@STEP_LOG_LINE@python.inline@ for f in files:@@@", |
89 "@@@STEP_LOG_LINE@python.inline@ if f.endswith('.pyc'):@@@", | 92 "@@@STEP_LOG_LINE@python.inline@ if f.endswith('.pyc'):@@@", |
90 "@@@STEP_LOG_LINE@python.inline@ os.remove(os.path.join(base, f))@@@"
, | 93 "@@@STEP_LOG_LINE@python.inline@ os.remove(os.path.join(base, f))@@@"
, |
91 "@@@STEP_LOG_END@python.inline@@@" | 94 "@@@STEP_LOG_END@python.inline@@@" |
92 ] | 95 ] |
93 }, | 96 }, |
94 { | 97 { |
95 "cmd": [ | 98 "cmd": [ |
96 "python", | 99 "python", |
97 "-u", | 100 "-u", |
98 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 101 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
99 "runhooks" | 102 "runhooks" |
100 ], | 103 ], |
| 104 "cwd": "[SLAVE_BUILD]", |
101 "env": { | 105 "env": { |
102 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 106 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
103 "GYP_CROSSCOMPILE": "1", | 107 "GYP_CROSSCOMPILE": "1", |
104 "GYP_DEFINES": "OS=android component=static_library fastbuild=1 gomadir='[
ROOT]/b/build/goma' target_arch=arm64 use_goma=1", | 108 "GYP_DEFINES": "OS=android component=static_library fastbuild=1 gomadir='[
BUILD]/goma' target_arch=arm64 use_goma=1", |
105 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 109 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
106 }, | 110 }, |
107 "name": "gclient runhooks" | 111 "name": "gclient runhooks" |
108 }, | 112 }, |
109 { | 113 { |
110 "cmd": [ | 114 "cmd": [ |
111 "python", | 115 "python", |
112 "-u", | 116 "-u", |
113 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", | 117 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", |
114 "--show-path", | 118 "--show-path", |
115 "python", | 119 "python", |
116 "RECIPE_PACKAGE_REPO[build]/scripts/slave/compile.py", | 120 "RECIPE_PACKAGE_REPO[build]/scripts/slave/compile.py", |
117 "--gsutil-py-path", | 121 "--gsutil-py-path", |
118 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", | 122 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", |
119 "--ninja-path", | 123 "--ninja-path", |
120 "RECIPE_PACKAGE_REPO[depot_tools]/ninja", | 124 "RECIPE_PACKAGE_REPO[depot_tools]/ninja", |
121 "--target", | 125 "--target", |
122 "Debug", | 126 "Debug", |
123 "--src-dir", | 127 "--src-dir", |
124 "[CWD]/src", | 128 "[SLAVE_BUILD]/src", |
125 "--goma-cache-dir", | 129 "--goma-cache-dir", |
126 "[ROOT]/b/build/slave/goma_cache", | 130 "[GOMA_CACHE]", |
127 "--build-tool", | 131 "--build-tool", |
128 "ninja", | 132 "ninja", |
129 "--compiler", | 133 "--compiler", |
130 "goma", | 134 "goma", |
131 "--goma-jsonstatus", | 135 "--goma-jsonstatus", |
132 "/path/to/tmp/json", | 136 "/path/to/tmp/json", |
133 "--goma-service-account-json-file", | 137 "--goma-service-account-json-file", |
134 "/creds/service_accounts/service-account-goma-client.json", | 138 "/creds/service_accounts/service-account-goma-client.json", |
135 "--goma-dir", | 139 "--goma-dir", |
136 "[ROOT]/b/build/goma", | 140 "[BUILD]/goma", |
137 "--" | 141 "--" |
138 ], | 142 ], |
| 143 "cwd": "[SLAVE_BUILD]", |
139 "env": { | 144 "env": { |
140 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 145 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
141 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 146 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
142 }, | 147 }, |
143 "name": "compile", | 148 "name": "compile", |
144 "~followup_annotations": [ | 149 "~followup_annotations": [ |
145 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", | 150 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", |
146 "@@@STEP_LOG_END@json.output (invalid)@@@" | 151 "@@@STEP_LOG_END@json.output (invalid)@@@" |
147 ] | 152 ] |
148 }, | 153 }, |
149 { | 154 { |
150 "name": "$result", | 155 "name": "$result", |
151 "recipe_result": null, | 156 "recipe_result": null, |
152 "status_code": 0 | 157 "status_code": 0 |
153 } | 158 } |
154 ] | 159 ] |
OLD | NEW |