| OLD | NEW |
| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-Clang-x86_64-Debug-ASAN/Debug" | 104 "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-Clang-x86_64-Debug-ASAN/Debug" |
| 105 ], | 105 ], |
| 106 "cwd": "[CUSTOM_/_B_WORK]/skia", | 106 "cwd": "[CUSTOM_/_B_WORK]/skia", |
| 107 "env": { | 107 "env": { |
| 108 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]:RECIPE_PACKAGE_REPO[dep
ot_tools]" | 108 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]:RECIPE_PACKAGE_REPO[dep
ot_tools]" |
| 109 }, | 109 }, |
| 110 "name": "ninja" | 110 "name": "ninja" |
| 111 }, | 111 }, |
| 112 { | 112 { |
| 113 "cmd": [ | 113 "cmd": [ |
| 114 "[CUSTOM_/_B_WORK]/skia/bin/fetch-gn" | |
| 115 ], | |
| 116 "cwd": "[CUSTOM_/_B_WORK]/skia", | |
| 117 "env": { | |
| 118 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]:RECIPE_PACKAGE_REPO[dep
ot_tools]" | |
| 119 }, | |
| 120 "name": "fetch-gn (2)" | |
| 121 }, | |
| 122 { | |
| 123 "cmd": [ | |
| 124 "gn", | |
| 125 "gen", | |
| 126 "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-Clang-x86_64-Debug-ASAN/Debug", | |
| 127 "--args=cc=\"[SLAVE_BUILD]/clang_linux/bin/clang\" cxx=\"[SLAVE_BUILD]/cla
ng_linux/bin/clang++\" extra_ldflags=\"-fuse-ld=lld\" sanitize=\"ASAN\"" | |
| 128 ], | |
| 129 "cwd": "[CUSTOM_/_B_WORK]/skia", | |
| 130 "env": { | |
| 131 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]:RECIPE_PACKAGE_REPO[dep
ot_tools]" | |
| 132 }, | |
| 133 "name": "gn gen (2)" | |
| 134 }, | |
| 135 { | |
| 136 "cmd": [ | |
| 137 "ninja", | |
| 138 "-C", | |
| 139 "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-Clang-x86_64-Debug-ASAN/Debug" | |
| 140 ], | |
| 141 "cwd": "[CUSTOM_/_B_WORK]/skia", | |
| 142 "env": { | |
| 143 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]:RECIPE_PACKAGE_REPO[dep
ot_tools]" | |
| 144 }, | |
| 145 "name": "ninja (2)" | |
| 146 }, | |
| 147 { | |
| 148 "cmd": [ | |
| 149 "python", | 114 "python", |
| 150 "-u", | 115 "-u", |
| 151 "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', 'get
_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', '*
.so', '*.dll', '*.dylib', 'skia_launcher', 'lib/*.so', 'iOSShell.app', 'iOSShell
.ipa', 'visualbench', 'visualbench.exe', 'vulkan-1.dll']\n\ntry:\n os.makedirs(
dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor patt
ern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f i
n 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.d
irname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n
shutil.move(f, dst_path)\n", | 116 "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', 'get
_images_from_skps', 'get_images_from_skps.exe', 'nanobench', 'nanobench.exe', '*
.so', '*.dll', '*.dylib', 'skia_launcher', 'lib/*.so', 'iOSShell.app', 'iOSShell
.ipa', 'visualbench', 'visualbench.exe', 'vulkan-1.dll']\n\ntry:\n os.makedirs(
dst)\nexcept OSError as e:\n if e.errno != errno.EEXIST:\n raise\n\nfor patt
ern in build_products_whitelist:\n path = os.path.join(src, pattern)\n for f i
n 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.d
irname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n
shutil.move(f, dst_path)\n", |
| 152 "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-Clang-x86_64-Debug-ASAN/Debug", | 117 "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-Clang-x86_64-Debug-ASAN/Debug", |
| 153 "[CUSTOM_[SWARM_OUT_DIR]]/out/Debug" | 118 "[CUSTOM_[SWARM_OUT_DIR]]/out/Debug" |
| 154 ], | 119 ], |
| 155 "name": "copy build products", | 120 "name": "copy build products", |
| 156 "~followup_annotations": [ | 121 "~followup_annotations": [ |
| 157 "@@@STEP_LOG_LINE@python.inline@import errno@@@", | 122 "@@@STEP_LOG_LINE@python.inline@import errno@@@", |
| 158 "@@@STEP_LOG_LINE@python.inline@import glob@@@", | 123 "@@@STEP_LOG_LINE@python.inline@import glob@@@", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 180 "@@@STEP_LOG_LINE@python.inline@ shutil.move(f, dst_path)@@@", | 145 "@@@STEP_LOG_LINE@python.inline@ shutil.move(f, dst_path)@@@", |
| 181 "@@@STEP_LOG_END@python.inline@@@" | 146 "@@@STEP_LOG_END@python.inline@@@" |
| 182 ] | 147 ] |
| 183 }, | 148 }, |
| 184 { | 149 { |
| 185 "name": "$result", | 150 "name": "$result", |
| 186 "recipe_result": null, | 151 "recipe_result": null, |
| 187 "status_code": 0 | 152 "status_code": 0 |
| 188 } | 153 } |
| 189 ] | 154 ] |
| OLD | NEW |