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

Side by Side Diff: scripts/slave/recipes/infra/recipe_roll_tryjob.expected/tryjob.json

Issue 1971983002: recipe_tryjob: Allow test bypass. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebase Created 4 years, 7 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 "/opt/infra-tools/authutil", 4 "/opt/infra-tools/authutil",
5 "token" 5 "token"
6 ], 6 ],
7 "name": "Get auth token", 7 "name": "Get auth token",
8 "stdout": "/path/to/tmp/" 8 "stdout": "/path/to/tmp/"
9 }, 9 },
10 { 10 {
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 "https://luci-config.appspot.com//_ah/api/config/v1/config_sets/projects%2 Fbuild%2Frefs%2Fheads%2Fmaster/config/recipes.cfg", 136 "https://luci-config.appspot.com//_ah/api/config/v1/config_sets/projects%2 Fbuild%2Frefs%2Fheads%2Fmaster/config/recipes.cfg",
137 "--outfile", 137 "--outfile",
138 "/path/to/tmp/", 138 "/path/to/tmp/",
139 "--headers-json", 139 "--headers-json",
140 "{\"Authorization\": \"Bearer ya29.foobar\"}" 140 "{\"Authorization\": \"Bearer ya29.foobar\"}"
141 ], 141 ],
142 "name": "Get project 'build' config 'recipes.cfg'" 142 "name": "Get project 'build' config 'recipes.cfg'"
143 }, 143 },
144 { 144 {
145 "cmd": [ 145 "cmd": [
146 "RECIPE_PACKAGE_REPO[depot_tools]/git_cl.py",
147 "description",
148 "-d",
149 "--rietveld",
150 "https://fake.code.review/12345678"
151 ],
152 "name": "git_cl description (build)",
153 "stdout": "/path/to/tmp/"
154 },
155 {
156 "cmd": [
157 "python",
158 "-u",
159 "RECIPE_PACKAGE_REPO[depot_tools]/git_footers.py",
160 "--json",
161 "/path/to/tmp/json"
162 ],
163 "name": "parse description",
164 "stdin": "",
165 "~followup_annotations": [
166 "@@@STEP_LOG_LINE@json.output@{}@@@",
167 "@@@STEP_LOG_END@json.output@@@"
168 ]
169 },
170 {
171 "cmd": [
146 "python", 172 "python",
147 "-u", 173 "-u",
148 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", 174 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n",
149 "[SLAVE_BUILD]/build/build", 175 "[SLAVE_BUILD]/build/build",
150 "511" 176 "511"
151 ], 177 ],
152 "name": "makedirs build directory", 178 "name": "makedirs build directory",
153 "~followup_annotations": [ 179 "~followup_annotations": [
154 "@@@STEP_LOG_LINE@python.inline@@@@", 180 "@@@STEP_LOG_LINE@python.inline@@@@",
155 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", 181 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@",
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 "simulation_test" 326 "simulation_test"
301 ], 327 ],
302 "name": "build tests" 328 "name": "build tests"
303 }, 329 },
304 { 330 {
305 "name": "$result", 331 "name": "$result",
306 "recipe_result": null, 332 "recipe_result": null,
307 "status_code": 0 333 "status_code": 0
308 } 334 }
309 ] 335 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698