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

Side by Side Diff: infra/bots/recipes/swarm_compile.expected/Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot.json

Issue 2188543002: Add Vulkan runtime dll (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Remove Vulkan_flavor Created 4 years, 4 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 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", 6 "\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",
7 "[CUSTOM_/_B_WORK]", 7 "[CUSTOM_/_B_WORK]",
8 "511" 8 "511"
9 ], 9 ],
10 "name": "makedirs checkout_path", 10 "name": "makedirs checkout_path",
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]:RECIPE_PACKAGE_REPO[dep ot_tools]", 197 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]:RECIPE_PACKAGE_REPO[dep ot_tools]",
198 "SKIA_ANDROID_VERBOSE_SETUP": "1", 198 "SKIA_ANDROID_VERBOSE_SETUP": "1",
199 "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-GCC-Arm7-Debug-Androi d-Trybot" 199 "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-GCC-Arm7-Debug-Androi d-Trybot"
200 }, 200 },
201 "name": "build most" 201 "name": "build most"
202 }, 202 },
203 { 203 {
204 "cmd": [ 204 "cmd": [
205 "python", 205 "python",
206 "-u", 206 "-u",
207 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['dm', 'dm.exe', 'nan obench', 'nanobench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'lib/*.so ', 'iOSShell.app', 'iOSShell.ipa', 'visualbench', 'visualbench.exe']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise \n\nfor pattern in build_products_whitelist:\n path = os.path.join(src, pattern )\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath (f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\n os.makedi rs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n", 207 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['dm', 'dm.exe', 'nan obench', 'nanobench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'lib/*.so ', 'iOSShell.app', 'iOSShell.ipa', 'visualbench', 'visualbench.exe', 'vulkan-1.d ll']\n\ntry:\n os.makedirs(dst)\nexcept OSError as e:\n if e.errno != errno.EE XIST:\n raise\n\nfor pattern in build_products_whitelist:\n path = os.path.j oin(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdir(os.path.dirname(dst_path)):\ n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n",
208 "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot/Deb ug", 208 "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot/Deb ug",
209 "[CUSTOM_[SWARM_OUT_DIR]]/out/Debug" 209 "[CUSTOM_[SWARM_OUT_DIR]]/out/Debug"
210 ], 210 ],
211 "name": "copy build products", 211 "name": "copy build products",
212 "~followup_annotations": [ 212 "~followup_annotations": [
213 "@@@STEP_LOG_LINE@python.inline@import errno@@@", 213 "@@@STEP_LOG_LINE@python.inline@import errno@@@",
214 "@@@STEP_LOG_LINE@python.inline@import glob@@@", 214 "@@@STEP_LOG_LINE@python.inline@import glob@@@",
215 "@@@STEP_LOG_LINE@python.inline@import os@@@", 215 "@@@STEP_LOG_LINE@python.inline@import os@@@",
216 "@@@STEP_LOG_LINE@python.inline@import shutil@@@", 216 "@@@STEP_LOG_LINE@python.inline@import shutil@@@",
217 "@@@STEP_LOG_LINE@python.inline@import sys@@@", 217 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
218 "@@@STEP_LOG_LINE@python.inline@@@@", 218 "@@@STEP_LOG_LINE@python.inline@@@@",
219 "@@@STEP_LOG_LINE@python.inline@src = sys.argv[1]@@@", 219 "@@@STEP_LOG_LINE@python.inline@src = sys.argv[1]@@@",
220 "@@@STEP_LOG_LINE@python.inline@dst = sys.argv[2]@@@", 220 "@@@STEP_LOG_LINE@python.inline@dst = sys.argv[2]@@@",
221 "@@@STEP_LOG_LINE@python.inline@build_products_whitelist = ['dm', 'dm.exe' , 'nanobench', 'nanobench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'li b/*.so', 'iOSShell.app', 'iOSShell.ipa', 'visualbench', 'visualbench.exe']@@@", 221 "@@@STEP_LOG_LINE@python.inline@build_products_whitelist = ['dm', 'dm.exe' , 'nanobench', 'nanobench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'li b/*.so', 'iOSShell.app', 'iOSShell.ipa', 'visualbench', 'visualbench.exe', 'vulk an-1.dll']@@@",
222 "@@@STEP_LOG_LINE@python.inline@@@@", 222 "@@@STEP_LOG_LINE@python.inline@@@@",
223 "@@@STEP_LOG_LINE@python.inline@try:@@@", 223 "@@@STEP_LOG_LINE@python.inline@try:@@@",
224 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(dst)@@@", 224 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(dst)@@@",
225 "@@@STEP_LOG_LINE@python.inline@except OSError as e:@@@", 225 "@@@STEP_LOG_LINE@python.inline@except OSError as e:@@@",
226 "@@@STEP_LOG_LINE@python.inline@ if e.errno != errno.EEXIST:@@@", 226 "@@@STEP_LOG_LINE@python.inline@ if e.errno != errno.EEXIST:@@@",
227 "@@@STEP_LOG_LINE@python.inline@ raise@@@", 227 "@@@STEP_LOG_LINE@python.inline@ raise@@@",
228 "@@@STEP_LOG_LINE@python.inline@@@@", 228 "@@@STEP_LOG_LINE@python.inline@@@@",
229 "@@@STEP_LOG_LINE@python.inline@for pattern in build_products_whitelist:@@ @", 229 "@@@STEP_LOG_LINE@python.inline@for pattern in build_products_whitelist:@@ @",
230 "@@@STEP_LOG_LINE@python.inline@ path = os.path.join(src, pattern)@@@", 230 "@@@STEP_LOG_LINE@python.inline@ path = os.path.join(src, pattern)@@@",
231 "@@@STEP_LOG_LINE@python.inline@ for f in glob.glob(path):@@@", 231 "@@@STEP_LOG_LINE@python.inline@ for f in glob.glob(path):@@@",
232 "@@@STEP_LOG_LINE@python.inline@ dst_path = os.path.join(dst, os.path.r elpath(f, src))@@@", 232 "@@@STEP_LOG_LINE@python.inline@ dst_path = os.path.join(dst, os.path.r elpath(f, src))@@@",
233 "@@@STEP_LOG_LINE@python.inline@ if not os.path.isdir(os.path.dirname(d st_path)):@@@", 233 "@@@STEP_LOG_LINE@python.inline@ if not os.path.isdir(os.path.dirname(d st_path)):@@@",
234 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(os.path.dirname(dst_path ))@@@", 234 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(os.path.dirname(dst_path ))@@@",
235 "@@@STEP_LOG_LINE@python.inline@ print 'Copying build product %s to %s' % (f, dst_path)@@@", 235 "@@@STEP_LOG_LINE@python.inline@ print 'Copying build product %s to %s' % (f, dst_path)@@@",
236 "@@@STEP_LOG_LINE@python.inline@ shutil.move(f, dst_path)@@@", 236 "@@@STEP_LOG_LINE@python.inline@ shutil.move(f, dst_path)@@@",
237 "@@@STEP_LOG_END@python.inline@@@" 237 "@@@STEP_LOG_END@python.inline@@@"
238 ] 238 ]
239 }, 239 },
240 { 240 {
241 "name": "$result", 241 "name": "$result",
242 "recipe_result": null, 242 "recipe_result": null,
243 "status_code": 0 243 "status_code": 0
244 } 244 }
245 ] 245 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698