Looks like slave_build and cwd changed to start_dir in https://bugs.chromium.org/p/chromium/issues/detail?id=662586
BUG=skia:5979
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=5104
Change-Id: I46d080b9089ea9b4adc2ed45fc81fdc192bdb2b2
Reviewed-on: https://skia-review.googlesource.com/5104
Reviewed-by: Ben Wagner <benjaminwagner@google.com>
Commit-Queue: Ravi Mistry <rmistry@google.com>
def rmtree(self, path):
"""Wrapper around api.file.rmtree with environment fix."""
env = {}
- env['PYTHONPATH'] = str(self.m.path['slave_build'].join(
+ env['PYTHONPATH'] = str(self.m.path['start_dir'].join(
'skia', 'infra', 'bots', '.recipe_deps', 'build', 'scripts'))
self.m.file.rmtree(self.m.path.basename(path),
path,
@property
def swarming_temp_dir(self):
"""Path where artifacts like isolate file and json output will be stored."""
- return self.m.path['slave_build'].join('swarming_temp_dir')
+ return self.m.path['start_dir'].join('swarming_temp_dir')
@property
def tasks_output_dir(self):
'-d', luci_go_dir.join('win64')],
env=env)
# Copy binaries to the expected location.
- dest = self.m.path['slave_build'].join('luci-go')
+ dest = self.m.path['start_dir'].join('luci-go')
self.m.run.rmtree(dest)
self.m.file.copytree('Copy Go binary',
source=luci_go_dir,
self.slave_name = self.m.properties['slavename']
self.build_number = self.m.properties['buildnumber']
- self.slave_dir = self.m.path['slave_build']
+ self.slave_dir = self.m.path['start_dir']
self.checkout_root = self.slave_dir
self.default_env = {}
self.gclient_env = {}
# The 'depot_tools' directory comes from recipe DEPS and isn't provided by
# default. We have to set it manually.
self.m.path.c.base_paths['depot_tools'] = (
- self.m.path.c.base_paths['slave_build'] +
+ self.m.path.c.base_paths['start_dir'] +
('skia', 'infra', 'bots', '.recipe_deps', 'depot_tools'))
if 'Win' in self.builder_name:
self.m.path.c.base_paths['depot_tools'] = (
self.local_svg_dir = self.slave_dir.join('svg')
if not self.is_compile_bot:
self.skia_out = self.slave_dir.join('out')
- self.tmp_dir = self.m.path['slave_build'].join('tmp')
+ self.tmp_dir = self.m.path['start_dir'].join('tmp')
# Some bots also require a checkout of chromium.
self.need_chromium_checkout = False
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/skp_output"
+ "[START_DIR]/skp_output"
],
"name": "rmtree skp_output",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/skp_output",
+ "[START_DIR]/skp_output",
"511"
],
"name": "makedirs skp_output",
"--browser_executable",
"[CUSTOM_/_B_WORK]/src/out/Release/chrome",
"--target_dir",
- "[SLAVE_BUILD]/skp_output"
+ "[START_DIR]/skp_output"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/skp_output"
+ "[START_DIR]/skp_output"
],
"name": "rmtree skp_output",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/skp_output",
+ "[START_DIR]/skp_output",
"511"
],
"name": "makedirs skp_output",
"--browser_executable",
"[CUSTOM_/_B_WORK]/src/out/Release/chrome",
"--target_dir",
- "[SLAVE_BUILD]/skp_output",
+ "[START_DIR]/skp_output",
"--upload_to_partner_bucket"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"python",
"[CUSTOM_/_B_WORK]/skia/infra/bots/upload_skps.py",
"--target_dir",
- "[SLAVE_BUILD]/skp_output"
+ "[START_DIR]/skp_output"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/skp_output"
+ "[START_DIR]/skp_output"
],
"name": "rmtree skp_output",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/skp_output",
+ "[START_DIR]/skp_output",
"511"
],
"name": "makedirs skp_output",
"--browser_executable",
"[CUSTOM_/_B_WORK]/src/out/Release/chrome",
"--target_dir",
- "[SLAVE_BUILD]/skp_output",
+ "[START_DIR]/skp_output",
"--upload_to_partner_bucket"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"python",
"[CUSTOM_/_B_WORK]/skia/infra/bots/upload_skps.py",
"--target_dir",
- "[SLAVE_BUILD]/skp_output"
+ "[START_DIR]/skp_output"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
cwd=src_dir)
# Clean up the output dir.
- output_dir = api.path['slave_build'].join('skp_output')
+ output_dir = api.path['start_dir'].join('skp_output')
if api.path.exists(output_dir):
api.file.rmtree('skp_output', output_dir)
api.file.makedirs('skp_output', output_dir)
buildnumber=2,
path_config='kitchen',
swarm_out_dir='[SWARM_OUT_DIR]') +
- api.path.exists(api.path['slave_build'].join('skp_output'))
+ api.path.exists(api.path['start_dir'].join('skp_output'))
)
builder = 'Housekeeper-Weekly-RecreateSKPs'
buildnumber=2,
path_config='kitchen',
swarm_out_dir='[SWARM_OUT_DIR]') +
- api.path.exists(api.path['slave_build'].join('skp_output'))
+ api.path.exists(api.path['start_dir'].join('skp_output'))
)
yield (
buildnumber=2,
path_config='kitchen',
swarm_out_dir='[SWARM_OUT_DIR]') +
- api.path.exists(api.path['slave_build'].join('skp_output')) +
+ api.path.exists(api.path['start_dir'].join('skp_output')) +
api.step_data('Upload SKPs', retcode=1)
)
"gn",
"gen",
"[CUSTOM_/_B_WORK]/skia/out/Build-Mac-Clang-mipsel-Debug-GN_Android/Debug",
- "--args=extra_cflags=[\"-O1\"] ndk=\"[SLAVE_BUILD]/android_ndk_darwin\" target_cpu=\"mipsel\""
+ "--args=extra_cflags=[\"-O1\"] ndk=\"[START_DIR]/android_ndk_darwin\" target_cpu=\"mipsel\""
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"gn",
"gen",
"[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-Clang-arm64-Debug-GN_Android-Trybot/Debug",
- "--args=extra_cflags=[\"-O1\"] ndk=\"[SLAVE_BUILD]/android_ndk_linux\" target_cpu=\"arm64\""
+ "--args=extra_cflags=[\"-O1\"] ndk=\"[START_DIR]/android_ndk_linux\" target_cpu=\"arm64\""
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"gn",
"gen",
"[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-Clang-arm64-Debug-GN_Android_FrameworkDefs/Debug",
- "--args=extra_cflags=[\"-O1\"] ndk=\"[SLAVE_BUILD]/android_ndk_linux\" skia_enable_android_framework_defines=true target_cpu=\"arm64\""
+ "--args=extra_cflags=[\"-O1\"] ndk=\"[START_DIR]/android_ndk_linux\" skia_enable_android_framework_defines=true target_cpu=\"arm64\""
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"gn",
"gen",
"[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-Clang-arm64-Release-GN_Android/Release",
- "--args=is_debug=false ndk=\"[SLAVE_BUILD]/android_ndk_linux\" target_cpu=\"arm64\""
+ "--args=is_debug=false ndk=\"[START_DIR]/android_ndk_linux\" target_cpu=\"arm64\""
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"gn",
"gen",
"[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-Clang-arm64-Release-GN_Android_Vulkan/Release",
- "--args=is_debug=false ndk=\"[SLAVE_BUILD]/android_ndk_linux\" ndk_api=24 skia_enable_vulkan_debug_layers=false target_cpu=\"arm64\""
+ "--args=is_debug=false ndk=\"[START_DIR]/android_ndk_linux\" ndk_api=24 skia_enable_vulkan_debug_layers=false target_cpu=\"arm64\""
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"gn",
"gen",
"[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-Clang-x86_64-Debug-ASAN/Debug",
- "--args=cc=\"[SLAVE_BUILD]/clang_linux/bin/clang\" cxx=\"[SLAVE_BUILD]/clang_linux/bin/clang++\" extra_cflags=[\"-O1\"] extra_ldflags=[\"-fuse-ld=lld\"] sanitize=\"ASAN\""
+ "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-O1\"] extra_ldflags=[\"-fuse-ld=lld\"] sanitize=\"ASAN\""
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"gn",
"gen",
"[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-Clang-x86_64-Debug-GN/Debug",
- "--args=cc=\"[SLAVE_BUILD]/clang_linux/bin/clang\" cxx=\"[SLAVE_BUILD]/clang_linux/bin/clang++\" extra_cflags=[\"-O1\"] extra_ldflags=[\"-fuse-ld=lld\"]"
+ "--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cxx=\"[START_DIR]/clang_linux/bin/clang++\" extra_cflags=[\"-O1\"] extra_ldflags=[\"-fuse-ld=lld\"]"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"gn",
"gen",
"[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-GCC-x86_64-Debug-MSAN/Debug",
- "--args=cc=\"gcc\" cxx=\"g++\" extra_cflags=[\"-O1\"] extra_ldflags=[\"-L[SLAVE_BUILD]/clang_linux/msan\"] sanitize=\"MSAN\" skia_use_fontconfig=false"
+ "--args=cc=\"gcc\" cxx=\"g++\" extra_cflags=[\"-O1\"] extra_ldflags=[\"-L[START_DIR]/clang_linux/msan\"] sanitize=\"MSAN\" skia_use_fontconfig=false"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"gn.bat",
"gen",
"[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-Clang-arm64-Release-GN_Android\\Release",
- "--args=is_debug=false ndk=\"[SLAVE_BUILD]\\n\" target_cpu=\"arm64\""
+ "--args=is_debug=false ndk=\"[START_DIR]\\n\" target_cpu=\"arm64\""
],
"cwd": "[CUSTOM_C:\\_B_WORK]\\skia",
"env": {
"gn.bat",
"gen",
"[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-MSVC-x86-Debug-ANGLE\\Debug",
- "--args=skia_use_angle=true target_cpu=\"x86\" windk=\"[SLAVE_BUILD]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
+ "--args=skia_use_angle=true target_cpu=\"x86\" windk=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
],
"cwd": "[CUSTOM_C:\\_B_WORK]\\skia",
"env": {
"gn.bat",
"gen",
"[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-MSVC-x86-Debug-Exceptions\\Debug",
- "--args=extra_cflags=[\"/EHsc\"] target_cpu=\"x86\" windk=\"[SLAVE_BUILD]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
+ "--args=extra_cflags=[\"/EHsc\"] target_cpu=\"x86\" windk=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
],
"cwd": "[CUSTOM_C:\\_B_WORK]\\skia",
"env": {
"gn.bat",
"gen",
"[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-MSVC-x86-Debug\\Debug",
- "--args=target_cpu=\"x86\" windk=\"[SLAVE_BUILD]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
+ "--args=target_cpu=\"x86\" windk=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
],
"cwd": "[CUSTOM_C:\\_B_WORK]\\skia",
"env": {
"gn.bat",
"gen",
"[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-MSVC-x86-Release-GDI\\Release",
- "--args=is_debug=false skia_use_gdi=true target_cpu=\"x86\" windk=\"[SLAVE_BUILD]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
+ "--args=is_debug=false skia_use_gdi=true target_cpu=\"x86\" windk=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
],
"cwd": "[CUSTOM_C:\\_B_WORK]\\skia",
"env": {
"gn.bat",
"gen",
"[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-MSVC-x86-Release-GN\\Release",
- "--args=is_debug=false target_cpu=\"x86\" windk=\"[SLAVE_BUILD]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
+ "--args=is_debug=false target_cpu=\"x86\" windk=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
],
"cwd": "[CUSTOM_C:\\_B_WORK]\\skia",
"env": {
"gn.bat",
"gen",
"[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-MSVC-x86_64-Release-Vulkan\\Release_x64",
- "--args=is_debug=false skia_vulkan_sdk=\"[SLAVE_BUILD]\\win_vulkan_sdk\" windk=\"[SLAVE_BUILD]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
+ "--args=is_debug=false skia_vulkan_sdk=\"[START_DIR]\\win_vulkan_sdk\" windk=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
],
"cwd": "[CUSTOM_C:\\_B_WORK]\\skia",
"env": {
"python",
"-u",
"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', 'skpbench', '*.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 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.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n",
- "[SLAVE_BUILD]\\win_vulkan_sdk",
+ "[START_DIR]\\win_vulkan_sdk",
"[CUSTOM_[SWARM_OUT_DIR]]\\out\\Release_x64"
],
"name": "copy build products (2)",
"gn.bat",
"gen",
"[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-MSVC-x86-Debug\\Debug",
- "--args=target_cpu=\"x86\" windk=\"[SLAVE_BUILD]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
+ "--args=target_cpu=\"x86\" windk=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
],
"cwd": "[CUSTOM_C:\\_B_WORK]\\skia",
"env": {
"python",
"-u",
"\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",
- "[SLAVE_BUILD]\\tmp",
+ "[START_DIR]\\tmp",
"511"
],
"name": "makedirs tmp_dir",
"gn.bat",
"gen",
"[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-MSVC-x86-Debug\\Debug",
- "--args=target_cpu=\"x86\" windk=\"[SLAVE_BUILD]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
+ "--args=target_cpu=\"x86\" windk=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
],
"cwd": "[CUSTOM_C:\\_B_WORK]\\skia",
"env": {
"python",
"-u",
"\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",
- "[SLAVE_BUILD]\\tmp",
+ "[START_DIR]\\tmp",
"511"
],
"name": "makedirs tmp_dir",
"gn.bat",
"gen",
"[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-MSVC-x86-Debug\\Debug",
- "--args=target_cpu=\"x86\" windk=\"[SLAVE_BUILD]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
+ "--args=target_cpu=\"x86\" windk=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
],
"cwd": "[CUSTOM_C:\\_B_WORK]\\skia",
"env": {
"python",
"-u",
"\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",
- "[SLAVE_BUILD]\\tmp",
+ "[START_DIR]\\tmp",
"511"
],
"name": "makedirs tmp_dir",
"gn.bat",
"gen",
"[CUSTOM_C:\\_B_WORK]\\skia\\out\\Build-Win-MSVC-x86-Debug-Trybot\\Debug",
- "--args=target_cpu=\"x86\" windk=\"[SLAVE_BUILD]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
+ "--args=target_cpu=\"x86\" windk=\"[START_DIR]\\t\\depot_tools\\win_toolchain\\vs_files\\95ddda401ec5678f15eeed01d2bee08fcbc5ee97\""
],
"cwd": "[CUSTOM_C:\\_B_WORK]\\skia",
"env": {
path_config='kitchen',
swarm_out_dir='[SWARM_OUT_DIR]') +
api.path.exists(
- api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
+ api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
)
)
if 'Win' in builder:
patchset=1,
issue=2147533002L) +
api.path.exists(
- api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
+ api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
) +
api.platform('win', 64)
)
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"cmd": [
"gn",
"gen",
- "[SLAVE_BUILD]/out/Release",
+ "[START_DIR]/out/Release",
"--args=cc=\"gcc\" cxx=\"g++\" is_debug=false"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"cmd": [
"ninja",
"-C",
- "[SLAVE_BUILD]/out/Release"
+ "[START_DIR]/out/Release"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"python",
"-u",
"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', 'skpbench', '*.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 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.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n",
- "[SLAVE_BUILD]/out/Release",
+ "[START_DIR]/out/Release",
"[CUSTOM_/_B_WORK]/skia/infra/bots/ct"
],
"name": "copy build products",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
"[CUSTOM_/_B_WORK]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/swarming_temp_dir"
+ "[START_DIR]/swarming_temp_dir"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree swarming_temp_dir",
"~followup_annotations": [
"[CUSTOM_/_B_WORK]/skps/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs/slave1"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave1",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-nanobench-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-1.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-nanobench-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-1.isolated.gen.json"
],
"name": "Write ct-nanobench-1.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs/slave2"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave2",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-nanobench-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-2.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-nanobench-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-2.isolated.gen.json"
],
"name": "Write ct-nanobench-2.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs/slave3"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave3",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-nanobench-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-3.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-nanobench-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-3.isolated.gen.json"
],
"name": "Write ct-nanobench-3.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs/slave4"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave4",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (4)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-nanobench-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-4.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-nanobench-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-4.isolated.gen.json"
],
"name": "Write ct-nanobench-4.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs/slave5"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave5",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (5)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-nanobench-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-5.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-nanobench-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-5.isolated.gen.json"
],
"name": "Write ct-nanobench-5.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-1.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-2.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-3.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-4.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-5.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-1.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-2.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-3.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-4.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-5.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-1"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-1"
],
"name": "ct-nanobench-1 on Ubuntu-14.04",
"~followup_annotations": [
"python",
"-u",
"\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys.argv[1]), f)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-1/0",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-1/0",
"/path/to/tmp/json"
],
"name": "listdir output dir",
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-1/0/file 1",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-1/0/file 1",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-1/0/file 2",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-1/0/file 2",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-2"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-2"
],
"name": "ct-nanobench-2 on Ubuntu-14.04",
"~followup_annotations": [
"python",
"-u",
"\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys.argv[1]), f)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-2/0",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-2/0",
"/path/to/tmp/json"
],
"name": "listdir output dir (2)",
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-2/0/file 1",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-2/0/file 1",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-2/0/file 2",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-2/0/file 2",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-3"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-3"
],
"name": "ct-nanobench-3 on Ubuntu-14.04",
"~followup_annotations": [
"python",
"-u",
"\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys.argv[1]), f)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-3/0",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-3/0",
"/path/to/tmp/json"
],
"name": "listdir output dir (3)",
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-3/0/file 1",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-3/0/file 1",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-3/0/file 2",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-3/0/file 2",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-4"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-4"
],
"name": "ct-nanobench-4 on Ubuntu-14.04",
"~followup_annotations": [
"python",
"-u",
"\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys.argv[1]), f)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-4/0",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-4/0",
"/path/to/tmp/json"
],
"name": "listdir output dir (4)",
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-4/0/file 1",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-4/0/file 1",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-4/0/file 2",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-4/0/file 2",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-5"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-5"
],
"name": "ct-nanobench-5 on Ubuntu-14.04",
"~followup_annotations": [
"python",
"-u",
"\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys.argv[1]), f)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-5/0",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-5/0",
"/path/to/tmp/json"
],
"name": "listdir output dir (5)",
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-5/0/file 1",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-5/0/file 1",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-5/0/file 2",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-5/0/file 2",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"cmd": [
"gn",
"gen",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"--args=cc=\"gcc\" cxx=\"g++\" extra_cflags=[\"-O1\"]"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"cmd": [
"ninja",
"-C",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"python",
"-u",
"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', 'skpbench', '*.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 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.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"[CUSTOM_/_B_WORK]/skia/infra/bots/ct"
],
"name": "copy build products",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
"[CUSTOM_/_B_WORK]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/swarming_temp_dir"
+ "[START_DIR]/swarming_temp_dir"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree swarming_temp_dir",
"~followup_annotations": [
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_100k_SKPs/slave1"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave1",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-1.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-1.isolated.gen.json"
],
"name": "Write ct-dm-1.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_100k_SKPs/slave2"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave2",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-2.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-2.isolated.gen.json"
],
"name": "Write ct-dm-2.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_100k_SKPs/slave3"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave3",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-3.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-3.isolated.gen.json"
],
"name": "Write ct-dm-3.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_100k_SKPs/slave4"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave4",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (4)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-4.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-4.isolated.gen.json"
],
"name": "Write ct-dm-4.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_100k_SKPs/slave5"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave5",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (5)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
],
"name": "Write ct-dm-5.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-1.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-2.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-3.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-4.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/ct-dm-1.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-2.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-3.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-4.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-1"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-1"
],
"name": "ct-dm-1 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-2"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-2"
],
"name": "ct-dm-2 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-3"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-3"
],
"name": "ct-dm-3 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-4"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-4"
],
"name": "ct-dm-4 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-5"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-5"
],
"name": "ct-dm-5 on Ubuntu-14.04",
"~followup_annotations": [
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"cmd": [
"gn",
"gen",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"--args=cc=\"gcc\" cxx=\"g++\" extra_cflags=[\"-O1\"]"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"cmd": [
"ninja",
"-C",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"python",
"-u",
"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', 'skpbench', '*.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 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.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"[CUSTOM_/_B_WORK]/skia/infra/bots/ct"
],
"name": "copy build products",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
"[CUSTOM_/_B_WORK]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/swarming_temp_dir"
+ "[START_DIR]/swarming_temp_dir"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree swarming_temp_dir",
"~followup_annotations": [
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs/slave1"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave1",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-1.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-1.isolated.gen.json"
],
"name": "Write ct-dm-1.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs/slave2"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave2",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-2.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-2.isolated.gen.json"
],
"name": "Write ct-dm-2.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs/slave3"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave3",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-3.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-3.isolated.gen.json"
],
"name": "Write ct-dm-3.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs/slave4"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave4",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (4)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-4.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-4.isolated.gen.json"
],
"name": "Write ct-dm-4.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs/slave5"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave5",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (5)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
],
"name": "Write ct-dm-5.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-1.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-2.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-3.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-4.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/ct-dm-1.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-2.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-3.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-4.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-1"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-1"
],
"name": "ct-dm-1 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-2"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-2"
],
"name": "ct-dm-2 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-3"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-3"
],
"name": "ct-dm-3 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-4"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-4"
],
"name": "ct-dm-4 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-5"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-5"
],
"name": "ct-dm-5 on Ubuntu-14.04",
"~followup_annotations": [
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"cmd": [
"gn",
"gen",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"--args=cc=\"gcc\" cxx=\"g++\" extra_cflags=[\"-O1\"]"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"cmd": [
"ninja",
"-C",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"python",
"-u",
"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', 'skpbench', '*.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 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.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"[CUSTOM_/_B_WORK]/skia/infra/bots/ct"
],
"name": "copy build products",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
"[CUSTOM_/_B_WORK]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/swarming_temp_dir"
+ "[START_DIR]/swarming_temp_dir"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree swarming_temp_dir",
"~followup_annotations": [
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs-Trybot/slave1"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave1",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs-Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-1.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs-Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-1.isolated.gen.json"
],
"name": "Write ct-dm-1.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs-Trybot/slave2"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave2",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs-Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-2.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs-Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-2.isolated.gen.json"
],
"name": "Write ct-dm-2.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs-Trybot/slave3"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave3",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs-Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-3.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs-Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-3.isolated.gen.json"
],
"name": "Write ct-dm-3.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs-Trybot/slave4"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave4",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (4)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs-Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-4.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs-Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-4.isolated.gen.json"
],
"name": "Write ct-dm-4.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs-Trybot/slave5"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave5",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (5)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs-Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_10k_SKPs-Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
],
"name": "Write ct-dm-5.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-1.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-2.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-3.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-4.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/ct-dm-1.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-2.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-3.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-4.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-1"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-1"
],
"name": "ct-dm-1 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-2"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-2"
],
"name": "ct-dm-2 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-3"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-3"
],
"name": "ct-dm-3 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-4"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-4"
],
"name": "ct-dm-4 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-5"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-5"
],
"name": "ct-dm-5 on Ubuntu-14.04",
"~followup_annotations": [
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"cmd": [
"gn",
"gen",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"--args=cc=\"gcc\" cxx=\"g++\" extra_cflags=[\"-O1\"]"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"cmd": [
"ninja",
"-C",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"python",
"-u",
"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', 'skpbench', '*.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 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.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"[CUSTOM_/_B_WORK]/skia/infra/bots/ct"
],
"name": "copy build products",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
"[CUSTOM_/_B_WORK]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/swarming_temp_dir"
+ "[START_DIR]/swarming_temp_dir"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree swarming_temp_dir",
"~followup_annotations": [
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs/slave1"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave1",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-1.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-1.isolated.gen.json"
],
"name": "Write ct-dm-1.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs/slave2"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave2",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-2.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-2.isolated.gen.json"
],
"name": "Write ct-dm-2.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs/slave3"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave3",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-3.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-3.isolated.gen.json"
],
"name": "Write ct-dm-3.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs/slave4"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave4",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (4)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-4.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-4.isolated.gen.json"
],
"name": "Write ct-dm-4.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs/slave5"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave5",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (5)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
],
"name": "Write ct-dm-5.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-1.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-2.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-3.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-4.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/ct-dm-1.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-2.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-3.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-4.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-1"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-1"
],
"name": "ct-dm-1 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-2"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-2"
],
"name": "ct-dm-2 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-3"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-3"
],
"name": "ct-dm-3 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-4"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-4"
],
"name": "ct-dm-4 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-5"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-5"
],
"name": "ct-dm-5 on Ubuntu-14.04",
"~followup_annotations": [
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"cmd": [
"gn",
"gen",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"--args=cc=\"gcc\" cxx=\"g++\" extra_cflags=[\"-O1\"]"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"cmd": [
"ninja",
"-C",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"python",
"-u",
"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', 'skpbench', '*.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 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.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"[CUSTOM_/_B_WORK]/skia/infra/bots/ct"
],
"name": "copy build products",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
"[CUSTOM_/_B_WORK]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/swarming_temp_dir"
+ "[START_DIR]/swarming_temp_dir"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree swarming_temp_dir",
"~followup_annotations": [
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs/slave1"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave1",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-1.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-1.isolated.gen.json"
],
"name": "Write ct-dm-1.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs/slave2"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave2",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-2.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-2.isolated.gen.json"
],
"name": "Write ct-dm-2.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs/slave3"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave3",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-3.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-3.isolated.gen.json"
],
"name": "Write ct-dm-3.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs/slave4"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave4",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (4)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-4.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-4.isolated.gen.json"
],
"name": "Write ct-dm-4.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs/slave5"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave5",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (5)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
],
"name": "Write ct-dm-5.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-1.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-2.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-3.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-4.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/ct-dm-1.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-2.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-3.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-4.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-1"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-1"
],
"name": "ct-dm-1 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-2"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-2"
],
"name": "ct-dm-2 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-3"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-3"
],
"name": "ct-dm-3 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-4"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-4"
],
"name": "ct-dm-4 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-5"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-5"
],
"name": "ct-dm-5 on Ubuntu-14.04",
"~followup_annotations": [
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"cmd": [
"gn",
"gen",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"--args=cc=\"gcc\" cxx=\"g++\" extra_cflags=[\"-O1\"]"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"cmd": [
"ninja",
"-C",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"python",
"-u",
"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', 'skpbench', '*.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 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.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"[CUSTOM_/_B_WORK]/skia/infra/bots/ct"
],
"name": "copy build products",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
"[CUSTOM_/_B_WORK]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/swarming_temp_dir"
+ "[START_DIR]/swarming_temp_dir"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree swarming_temp_dir",
"~followup_annotations": [
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs/slave1"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave1",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-1.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-1.isolated.gen.json"
],
"name": "Write ct-dm-1.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs/slave2"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave2",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-2.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-2.isolated.gen.json"
],
"name": "Write ct-dm-2.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs/slave3"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave3",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-3.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-3.isolated.gen.json"
],
"name": "Write ct-dm-3.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs/slave4"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave4",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (4)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-4.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-4.isolated.gen.json"
],
"name": "Write ct-dm-4.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs/slave5"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave5",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (5)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-dm-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-dm-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_DM_1m_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"dm\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
],
"name": "Write ct-dm-5.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-1.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-2.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-3.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-4.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/ct-dm-1.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-2.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-3.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-4.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-dm-5.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-1"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-1"
],
"name": "ct-dm-1 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-2"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-2"
],
"name": "ct-dm-2 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-3"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-3"
],
"name": "ct-dm-3 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-4"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-4"
],
"name": "ct-dm-4 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-dm-5"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-dm-5"
],
"name": "ct-dm-5 on Ubuntu-14.04",
"~followup_annotations": [
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"cmd": [
"gn",
"gen",
- "[SLAVE_BUILD]/out/Release",
+ "[START_DIR]/out/Release",
"--args=cc=\"gcc\" cxx=\"g++\" is_debug=false"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"cmd": [
"ninja",
"-C",
- "[SLAVE_BUILD]/out/Release"
+ "[START_DIR]/out/Release"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"python",
"-u",
"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', 'skpbench', '*.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 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.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n",
- "[SLAVE_BUILD]/out/Release",
+ "[START_DIR]/out/Release",
"[CUSTOM_/_B_WORK]/skia/infra/bots/ct"
],
"name": "copy build products",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
"[CUSTOM_/_B_WORK]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/swarming_temp_dir"
+ "[START_DIR]/swarming_temp_dir"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree swarming_temp_dir",
"~followup_annotations": [
"[CUSTOM_/_B_WORK]/skps/Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_10k_SKPs/slave1"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave1",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-nanobench-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-1.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-nanobench-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-1.isolated.gen.json"
],
"name": "Write ct-nanobench-1.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_10k_SKPs/slave2"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave2",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-nanobench-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-2.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-nanobench-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-2.isolated.gen.json"
],
"name": "Write ct-nanobench-2.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_10k_SKPs/slave3"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave3",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-nanobench-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-3.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-nanobench-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-3.isolated.gen.json"
],
"name": "Write ct-nanobench-3.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_10k_SKPs/slave4"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave4",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (4)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-nanobench-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-4.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-nanobench-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-4.isolated.gen.json"
],
"name": "Write ct-nanobench-4.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_10k_SKPs/slave5"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave5",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (5)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-nanobench-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-5.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-nanobench-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-5.isolated.gen.json"
],
"name": "Write ct-nanobench-5.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-1.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-2.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-3.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-4.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-5.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-1.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-2.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-3.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-4.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-5.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-1"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-1"
],
"name": "ct-nanobench-1 on Ubuntu-14.04",
"~followup_annotations": [
"python",
"-u",
"\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys.argv[1]), f)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-1/0",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-1/0",
"/path/to/tmp/json"
],
"name": "listdir output dir",
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-1/0/file 1",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-1/0/file 1",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-1/0/file 2",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-1/0/file 2",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-2"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-2"
],
"name": "ct-nanobench-2 on Ubuntu-14.04",
"~followup_annotations": [
"python",
"-u",
"\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys.argv[1]), f)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-2/0",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-2/0",
"/path/to/tmp/json"
],
"name": "listdir output dir (2)",
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-2/0/file 1",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-2/0/file 1",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-2/0/file 2",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-2/0/file 2",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-3"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-3"
],
"name": "ct-nanobench-3 on Ubuntu-14.04",
"~followup_annotations": [
"python",
"-u",
"\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys.argv[1]), f)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-3/0",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-3/0",
"/path/to/tmp/json"
],
"name": "listdir output dir (3)",
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-3/0/file 1",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-3/0/file 1",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-3/0/file 2",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-3/0/file 2",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-4"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-4"
],
"name": "ct-nanobench-4 on Ubuntu-14.04",
"~followup_annotations": [
"python",
"-u",
"\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys.argv[1]), f)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-4/0",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-4/0",
"/path/to/tmp/json"
],
"name": "listdir output dir (4)",
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-4/0/file 1",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-4/0/file 1",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-4/0/file 2",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-4/0/file 2",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-5"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-5"
],
"name": "ct-nanobench-5 on Ubuntu-14.04",
"~followup_annotations": [
"python",
"-u",
"\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys.argv[1]), f)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-5/0",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-5/0",
"/path/to/tmp/json"
],
"name": "listdir output dir (5)",
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-5/0/file 1",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-5/0/file 1",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-5/0/file 2",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-5/0/file 2",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"cmd": [
"gn",
"gen",
- "[SLAVE_BUILD]/out/Release",
+ "[START_DIR]/out/Release",
"--args=cc=\"gcc\" cxx=\"g++\" is_debug=false"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"cmd": [
"ninja",
"-C",
- "[SLAVE_BUILD]/out/Release"
+ "[START_DIR]/out/Release"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"python",
"-u",
"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', 'skpbench', '*.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 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.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n",
- "[SLAVE_BUILD]/out/Release",
+ "[START_DIR]/out/Release",
"[CUSTOM_/_B_WORK]/skia/infra/bots/ct"
],
"name": "copy build products",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
"[CUSTOM_/_B_WORK]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/swarming_temp_dir"
+ "[START_DIR]/swarming_temp_dir"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree swarming_temp_dir",
"~followup_annotations": [
"[CUSTOM_/_B_WORK]/skps/Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs/slave1"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave1",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-nanobench-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-1.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-nanobench-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-1.isolated.gen.json"
],
"name": "Write ct-nanobench-1.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs/slave2"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave2",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-nanobench-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-2.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-nanobench-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-2.isolated.gen.json"
],
"name": "Write ct-nanobench-2.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs/slave3"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave3",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-nanobench-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-3.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-nanobench-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-3.isolated.gen.json"
],
"name": "Write ct-nanobench-3.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs/slave4"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave4",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (4)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-nanobench-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-4.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-nanobench-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-4.isolated.gen.json"
],
"name": "Write ct-nanobench-4.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs/slave5"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave5",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (5)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-nanobench-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-5.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-nanobench-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-5.isolated.gen.json"
],
"name": "Write ct-nanobench-5.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-1.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-2.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-3.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-4.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-5.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-1.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-2.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-3.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-4.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-nanobench-5.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-1"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-1"
],
"name": "ct-nanobench-1 on Ubuntu-14.04",
"~followup_annotations": [
"python",
"-u",
"\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys.argv[1]), f)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-1/0",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-1/0",
"/path/to/tmp/json"
],
"name": "listdir output dir",
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-1/0/file 1",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-1/0/file 1",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-1/0/file 2",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-1/0/file 2",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-2"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-2"
],
"name": "ct-nanobench-2 on Ubuntu-14.04",
"~followup_annotations": [
"python",
"-u",
"\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys.argv[1]), f)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-2/0",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-2/0",
"/path/to/tmp/json"
],
"name": "listdir output dir (2)",
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-2/0/file 1",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-2/0/file 1",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-2/0/file 2",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-2/0/file 2",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-3"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-3"
],
"name": "ct-nanobench-3 on Ubuntu-14.04",
"~followup_annotations": [
"python",
"-u",
"\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys.argv[1]), f)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-3/0",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-3/0",
"/path/to/tmp/json"
],
"name": "listdir output dir (3)",
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-3/0/file 1",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-3/0/file 1",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-3/0/file 2",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-3/0/file 2",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-4"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-4"
],
"name": "ct-nanobench-4 on Ubuntu-14.04",
"~followup_annotations": [
"python",
"-u",
"\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys.argv[1]), f)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-4/0",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-4/0",
"/path/to/tmp/json"
],
"name": "listdir output dir (4)",
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-4/0/file 1",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-4/0/file 1",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-4/0/file 2",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-4/0/file 2",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-5"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-5"
],
"name": "ct-nanobench-5 on Ubuntu-14.04",
"~followup_annotations": [
"python",
"-u",
"\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys.argv[1]), f)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-5/0",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-5/0",
"/path/to/tmp/json"
],
"name": "listdir output dir (5)",
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-5/0/file 1",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-5/0/file 1",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"----",
"cp",
"-R",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-5/0/file 2",
+ "[START_DIR]/swarming_temp_dir/outputs/ct-nanobench-5/0/file 2",
"gs://skia-perf/ct/10k/2012/05/14/12/"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"cmd": [
"gn",
"gen",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"--args=cc=\"gcc\" cxx=\"g++\" extra_cflags=[\"-O1\"]"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"cmd": [
"ninja",
"-C",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"python",
"-u",
"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', 'skpbench', '*.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 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.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"[CUSTOM_/_B_WORK]/skia/infra/bots/ct"
],
"name": "copy build products",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
"[CUSTOM_/_B_WORK]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/swarming_temp_dir"
+ "[START_DIR]/swarming_temp_dir"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree swarming_temp_dir",
"~followup_annotations": [
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_100k_SKPs/slave1"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave1",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-get_images_from_skps-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-1.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-get_images_from_skps-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-1.isolated.gen.json"
],
"name": "Write ct-get_images_from_skps-1.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_100k_SKPs/slave2"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave2",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-get_images_from_skps-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-2.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-get_images_from_skps-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-2.isolated.gen.json"
],
"name": "Write ct-get_images_from_skps-2.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_100k_SKPs/slave3"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave3",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-get_images_from_skps-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-3.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-get_images_from_skps-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-3.isolated.gen.json"
],
"name": "Write ct-get_images_from_skps-3.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_100k_SKPs/slave4"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave4",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (4)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-get_images_from_skps-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-4.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-get_images_from_skps-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-4.isolated.gen.json"
],
"name": "Write ct-get_images_from_skps-4.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_100k_SKPs/slave5"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave5",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (5)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-get_images_from_skps-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-5.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-get_images_from_skps-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_100k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-5.isolated.gen.json"
],
"name": "Write ct-get_images_from_skps-5.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-1.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-2.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-3.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-4.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-5.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-1.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-2.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-3.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-4.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-5.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-get_images_from_skps-1"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-get_images_from_skps-1"
],
"name": "ct-get_images_from_skps-1 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-get_images_from_skps-2"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-get_images_from_skps-2"
],
"name": "ct-get_images_from_skps-2 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-get_images_from_skps-3"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-get_images_from_skps-3"
],
"name": "ct-get_images_from_skps-3 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-get_images_from_skps-4"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-get_images_from_skps-4"
],
"name": "ct-get_images_from_skps-4 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-get_images_from_skps-5"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-get_images_from_skps-5"
],
"name": "ct-get_images_from_skps-5 on Ubuntu-14.04",
"~followup_annotations": [
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"cmd": [
"gn",
"gen",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"--args=cc=\"gcc\" cxx=\"g++\" extra_cflags=[\"-O1\"]"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"cmd": [
"ninja",
"-C",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"python",
"-u",
"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', 'skpbench', '*.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 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.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"[CUSTOM_/_B_WORK]/skia/infra/bots/ct"
],
"name": "copy build products",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
"[CUSTOM_/_B_WORK]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/swarming_temp_dir"
+ "[START_DIR]/swarming_temp_dir"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree swarming_temp_dir",
"~followup_annotations": [
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs/slave1"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave1",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-get_images_from_skps-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-1.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-get_images_from_skps-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-1.isolated.gen.json"
],
"name": "Write ct-get_images_from_skps-1.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs/slave2"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave2",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-get_images_from_skps-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-2.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-get_images_from_skps-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-2.isolated.gen.json"
],
"name": "Write ct-get_images_from_skps-2.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs/slave3"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave3",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-get_images_from_skps-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-3.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-get_images_from_skps-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-3.isolated.gen.json"
],
"name": "Write ct-get_images_from_skps-3.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs/slave4"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave4",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (4)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-get_images_from_skps-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-4.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-get_images_from_skps-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-4.isolated.gen.json"
],
"name": "Write ct-get_images_from_skps-4.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs/slave5"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave5",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (5)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-get_images_from_skps-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-5.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-get_images_from_skps-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-5.isolated.gen.json"
],
"name": "Write ct-get_images_from_skps-5.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-1.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-2.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-3.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-4.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-5.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-1.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-2.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-3.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-4.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-5.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-get_images_from_skps-1"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-get_images_from_skps-1"
],
"name": "ct-get_images_from_skps-1 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-get_images_from_skps-2"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-get_images_from_skps-2"
],
"name": "ct-get_images_from_skps-2 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-get_images_from_skps-3"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-get_images_from_skps-3"
],
"name": "ct-get_images_from_skps-3 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-get_images_from_skps-4"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-get_images_from_skps-4"
],
"name": "ct-get_images_from_skps-4 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-get_images_from_skps-5"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-get_images_from_skps-5"
],
"name": "ct-get_images_from_skps-5 on Ubuntu-14.04",
"~followup_annotations": [
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"cmd": [
"gn",
"gen",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"--args=cc=\"gcc\" cxx=\"g++\" extra_cflags=[\"-O1\"]"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"cmd": [
"ninja",
"-C",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"cwd": "[CUSTOM_/_B_WORK]/skia",
"env": {
"python",
"-u",
"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', 'skpbench', '*.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 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.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_path)\n",
- "[SLAVE_BUILD]/out/Debug",
+ "[START_DIR]/out/Debug",
"[CUSTOM_/_B_WORK]/skia/infra/bots/ct"
],
"name": "copy build products",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
"[CUSTOM_/_B_WORK]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary",
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/swarming_temp_dir"
+ "[START_DIR]/swarming_temp_dir"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree swarming_temp_dir",
"~followup_annotations": [
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs_Trybot/slave1"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave1",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-get_images_from_skps-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs_Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-1.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-get_images_from_skps-1.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs_Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-1.isolated.gen.json"
],
"name": "Write ct-get_images_from_skps-1.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs_Trybot/slave2"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave2",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-get_images_from_skps-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs_Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-2.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-get_images_from_skps-2.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs_Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-2.isolated.gen.json"
],
"name": "Write ct-get_images_from_skps-2.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs_Trybot/slave3"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave3",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-get_images_from_skps-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs_Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-3.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-get_images_from_skps-3.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs_Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-3.isolated.gen.json"
],
"name": "Write ct-get_images_from_skps-3.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs_Trybot/slave4"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave4",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (4)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-get_images_from_skps-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs_Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-4.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-get_images_from_skps-4.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs_Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-4.isolated.gen.json"
],
"name": "Write ct-get_images_from_skps-4.isolated.gen.json"
},
"[CUSTOM_/_B_WORK]/skps/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs_Trybot/slave5"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree slave5",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (5)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct-get_images_from_skps-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs_Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-5.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct/ct_skps.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct-get_images_from_skps-5.isolated\", \n \"--config-variable\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGURATION\", \n \"Debug\", \n \"--extra-variable\", \n \"BUILDER\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-CT_IMG_DECODE_10k_SKPs_Trybot\", \n \"--extra-variable\", \n \"GIT_HASH\", \n \"9046e2e693bb92a76e972b694580e5d17ad10748\", \n \"--extra-variable\", \n \"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n \"get_images_from_skps\"\n ], \n \"dir\": \"[CUSTOM_/_B_WORK]/skia/infra/bots/ct\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-5.isolated.gen.json"
],
"name": "Write ct-get_images_from_skps-5.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-1.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-2.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-3.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-4.isolated.gen.json",
- "[SLAVE_BUILD]/swarming_temp_dir/ct-get_images_from_skps-5.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-1.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-2.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-3.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-4.isolated.gen.json",
+ "[START_DIR]/swarming_temp_dir/ct-get_images_from_skps-5.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-get_images_from_skps-1"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-get_images_from_skps-1"
],
"name": "ct-get_images_from_skps-1 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-get_images_from_skps-2"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-get_images_from_skps-2"
],
"name": "ct-get_images_from_skps-2 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-get_images_from_skps-3"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-get_images_from_skps-3"
],
"name": "ct-get_images_from_skps-3 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-get_images_from_skps-4"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-get_images_from_skps-4"
],
"name": "ct-get_images_from_skps-4 on Ubuntu-14.04",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"--task-summary-json",
"/path/to/tmp/json",
"--task-output-dir",
- "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-get_images_from_skps-5"
+ "[START_DIR]/swarming_temp_dir/outputs/ct-get_images_from_skps-5"
],
"name": "ct-get_images_from_skps-5 on Ubuntu-14.04",
"~followup_annotations": [
revision=skia_revision,
) +
api.path.exists(
- api.path['slave_build'].join('skia'),
- api.path['slave_build'].join('src')
+ api.path['start_dir'].join('skia'),
+ api.path['start_dir'].join('src')
)
)
revision=skia_revision,
) +
api.path.exists(
- api.path['slave_build'].join('skia'),
- api.path['slave_build'].join('src')
+ api.path['start_dir'].join('skia'),
+ api.path['start_dir'].join('src')
)
)
revision=skia_revision,
) +
api.path.exists(
- api.path['slave_build'].join('skia'),
- api.path['slave_build'].join('src')
+ api.path['start_dir'].join('skia'),
+ api.path['start_dir'].join('src')
)
)
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
{
"cmd": [
"python",
- "[SLAVE_BUILD]/skia/platform_tools/android/tests/run_all.py"
+ "[START_DIR]/skia/platform_tools/android/tests/run_all.py"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "android platform self-tests"
},
"python",
"RECIPE_MODULE[skia::core]/resources/run_binary_size_analysis.py",
"--library",
- "[SLAVE_BUILD]/out/Release/lib/libskia.so",
+ "[START_DIR]/out/Release/lib/libskia.so",
"--githash",
"abc123",
"--gsutil_path",
"--issue_number",
"500"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "generate and upload binary size data"
},
{
"cmd": [
- "[SLAVE_BUILD]/go/go/bin/go",
+ "[START_DIR]/go/go/bin/go",
"get",
"go.skia.org/infra/comments/go/extract_comments"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "GOPATH": "[SLAVE_BUILD]/tmp/golib",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "GOPATH": "[START_DIR]/tmp/golib",
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "compile extract_comments"
},
{
"cmd": [
- "[SLAVE_BUILD]/tmp/golib/bin/extract_comments",
+ "[START_DIR]/tmp/golib/bin/extract_comments",
"--dir",
"gm",
"--dest",
"gs://skia-doc/gm/comments.json"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "GOPATH": "[SLAVE_BUILD]/tmp/golib",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "GOPATH": "[START_DIR]/tmp/golib",
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "run extract_comments"
},
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
{
"cmd": [
"python",
- "[SLAVE_BUILD]/skia/platform_tools/android/tests/run_all.py"
+ "[START_DIR]/skia/platform_tools/android/tests/run_all.py"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "android platform self-tests"
},
"python",
"RECIPE_MODULE[skia::core]/resources/generate_and_upload_doxygen.py"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "generate and upload doxygen"
},
"python",
"RECIPE_MODULE[skia::core]/resources/run_binary_size_analysis.py",
"--library",
- "[SLAVE_BUILD]/out/Release/lib/libskia.so",
+ "[START_DIR]/out/Release/lib/libskia.so",
"--githash",
"abc123",
"--gsutil_path",
"[DEPOT_TOOLS]/gsutil.py"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "generate and upload binary size data"
},
{
"cmd": [
- "[SLAVE_BUILD]/go/go/bin/go",
+ "[START_DIR]/go/go/bin/go",
"get",
"go.skia.org/infra/comments/go/extract_comments"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "GOPATH": "[SLAVE_BUILD]/tmp/golib",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "GOPATH": "[START_DIR]/tmp/golib",
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "compile extract_comments"
},
{
"cmd": [
- "[SLAVE_BUILD]/tmp/golib/bin/extract_comments",
+ "[START_DIR]/tmp/golib/bin/extract_comments",
"--dir",
"gm",
"--dest",
"gs://skia-doc/gm/comments.json"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "GOPATH": "[SLAVE_BUILD]/tmp/golib",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "GOPATH": "[START_DIR]/tmp/golib",
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "run extract_comments"
},
revision='abc123',
path_config='kitchen',
swarm_out_dir='[SWARM_OUT_DIR]') +
- api.path.exists(api.path['slave_build'])
+ api.path.exists(api.path['start_dir'])
)
if 'Trybot' in buildername:
test.properties['issue'] = '500'
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Debug/nanobench",
+ "[START_DIR]/out/Debug/nanobench",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push nanobench"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/nanobench --undefok -i /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/nanobench --svgs /sdcard/revenge_of_the_skiabot/svgs --nocpu --pre_log --images --gpuStatsDump true --useThermalManager 1,1,10,1000 --scales 1.0 1.1 --config vk --match ~blurroundrect ~patch_grid ~desk_carsvg ~inc0.gif ~inc1.gif ~incInterlaced.gif ~inc0.jpg ~incGray.jpg ~inc0.wbmp ~inc1.wbmp ~inc0.webp ~inc1.webp ~inc0.ico ~inc1.ico ~inc0.png ~inc1.png ~inc2.png ~inc12.png ~inc13.png ~inc14.png ~inc0.webp ~inc1.webp; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/nanobench.sh"
+ "[START_DIR]/tmp/nanobench.sh"
],
"name": "write nanobench.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/nanobench.sh",
+ "[START_DIR]/tmp/nanobench.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push nanobench.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Debug/nanobench",
+ "[START_DIR]/out/Debug/nanobench",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push nanobench"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/nanobench --undefok -i /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/nanobench --svgs /sdcard/revenge_of_the_skiabot/svgs --nocpu --pre_log --images --gpuStatsDump true --useThermalManager 1,1,10,1000 --scales 1.0 1.1 --config 8888 gpu nonrendering hwui f16 srgb msaa4 nvpr4 nvprdit4 --match ~blurroundrect ~patch_grid ~desk_carsvg ~keymobi_shop_mobileweb_ebay_com.skp ~inc0.gif ~inc1.gif ~incInterlaced.gif ~inc0.jpg ~incGray.jpg ~inc0.wbmp ~inc1.wbmp ~inc0.webp ~inc1.webp ~inc0.ico ~inc1.ico ~inc0.png ~inc1.png ~inc2.png ~inc12.png ~inc13.png ~inc14.png ~inc0.webp ~inc1.webp; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/nanobench.sh"
+ "[START_DIR]/tmp/nanobench.sh"
],
"name": "write nanobench.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/nanobench.sh",
+ "[START_DIR]/tmp/nanobench.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push nanobench.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"-rf",
"/sdcard/revenge_of_the_skiabot/perf"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/perf"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/perf"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/perf"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Release/nanobench",
+ "[START_DIR]/out/Release/nanobench",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push nanobench"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/nanobench --undefok -i /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/nanobench --svgs /sdcard/revenge_of_the_skiabot/svgs --nocpu --pre_log --images --gpuStatsDump true --useThermalManager 1,1,10,1000 --scales 1.0 1.1 --config 8888 gpu nonrendering hwui f16 srgb msaa4 nvpr4 nvprdit4 esinst --match ~blurroundrect ~patch_grid ~desk_carsvg ~inc0.gif ~inc1.gif ~incInterlaced.gif ~inc0.jpg ~incGray.jpg ~inc0.wbmp ~inc1.wbmp ~inc0.webp ~inc1.webp ~inc0.ico ~inc1.ico ~inc0.png ~inc1.png ~inc2.png ~inc12.png ~inc13.png ~inc14.png ~inc0.webp ~inc1.webp --outResultsFile /sdcard/revenge_of_the_skiabot/perf/nanobench_abc123_1337000001.json --properties gitHash abc123 build_number 5 --key arch arm compiler Clang cpu_or_gpu GPU cpu_or_gpu_value Adreno420 extra_config GN_Android model Nexus6 os Android; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/nanobench.sh"
+ "[START_DIR]/tmp/nanobench.sh"
],
"name": "write nanobench.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/nanobench.sh",
+ "[START_DIR]/tmp/nanobench.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push nanobench.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"/sdcard/revenge_of_the_skiabot/perf",
"[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Android-Clang-Nexus6-GPU-Adreno420-arm-Release-GN_Android/data"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "pull /sdcard/revenge_of_the_skiabot/perf [CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Android-Clang-Nexus6-GPU-Adreno420-arm-Release-GN_Android/data"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Release"
+ "[START_DIR]/out/Release"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"-rf",
"/sdcard/revenge_of_the_skiabot/perf"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/perf"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/perf"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/perf"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Release/nanobench",
+ "[START_DIR]/out/Release/nanobench",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push nanobench"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/nanobench --undefok -i /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/nanobench --svgs /sdcard/revenge_of_the_skiabot/svgs --nocpu --pre_log --images --gpuStatsDump true --useThermalManager 1,1,10,1000 --scales 1.0 1.1 --config 8888 gpu nonrendering hwui f16 srgb msaa4 nvpr4 nvprdit4 --match ~blurroundrect ~patch_grid ~desk_carsvg ~inc0.gif ~inc1.gif ~incInterlaced.gif ~inc0.jpg ~incGray.jpg ~inc0.wbmp ~inc1.wbmp ~inc0.webp ~inc1.webp ~inc0.ico ~inc1.ico ~inc0.png ~inc1.png ~inc2.png ~inc12.png ~inc13.png ~inc14.png ~inc0.webp ~inc1.webp --outResultsFile /sdcard/revenge_of_the_skiabot/perf/nanobench_abc123_1337000001.json --properties gitHash abc123 build_number 5 --key arch arm compiler Clang cpu_or_gpu GPU cpu_or_gpu_value Tegra3 extra_config GN_Android model Nexus7 os Android; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/nanobench.sh"
+ "[START_DIR]/tmp/nanobench.sh"
],
"name": "write nanobench.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/nanobench.sh",
+ "[START_DIR]/tmp/nanobench.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push nanobench.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"/sdcard/revenge_of_the_skiabot/perf",
"[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-GN_Android/data"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "pull /sdcard/revenge_of_the_skiabot/perf [CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-GN_Android/data"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Release"
+ "[START_DIR]/out/Release"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"-rf",
"/sdcard/revenge_of_the_skiabot/perf"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/perf"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/perf"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/perf"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Release/nanobench",
+ "[START_DIR]/out/Release/nanobench",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push nanobench"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/nanobench --undefok -i /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/nanobench --svgs /sdcard/revenge_of_the_skiabot/svgs --nocpu --pre_log --images --gpuStatsDump true --useThermalManager 1,1,10,1000 --scales 1.0 1.1 --config 8888 gpu nonrendering hwui f16 srgb --match ~blurroundrect ~patch_grid ~desk_carsvg ~desk_unicodetable ~inc0.gif ~inc1.gif ~incInterlaced.gif ~inc0.jpg ~incGray.jpg ~inc0.wbmp ~inc1.wbmp ~inc0.webp ~inc1.webp ~inc0.ico ~inc1.ico ~inc0.png ~inc1.png ~inc2.png ~inc12.png ~inc13.png ~inc14.png ~inc0.webp ~inc1.webp --outResultsFile /sdcard/revenge_of_the_skiabot/perf/nanobench_abc123_1337000001.json --properties gitHash abc123 build_number 5 --key arch x86 compiler Clang cpu_or_gpu GPU cpu_or_gpu_value PowerVR extra_config GN_Android model NexusPlayer os Android; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/nanobench.sh"
+ "[START_DIR]/tmp/nanobench.sh"
],
"name": "write nanobench.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/nanobench.sh",
+ "[START_DIR]/tmp/nanobench.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push nanobench.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"/sdcard/revenge_of_the_skiabot/perf",
"[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-GN_Android/data"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "pull /sdcard/revenge_of_the_skiabot/perf [CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-GN_Android/data"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Release"
+ "[START_DIR]/out/Release"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"-rf",
"/sdcard/revenge_of_the_skiabot/perf"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/perf"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/perf"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/perf"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Release/nanobench",
+ "[START_DIR]/out/Release/nanobench",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push nanobench"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/nanobench --undefok -i /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/nanobench --svgs /sdcard/revenge_of_the_skiabot/svgs --nocpu --pre_log --images --gpuStatsDump true --useThermalManager 1,1,10,1000 --scales 1.0 1.1 --config 8888 gpu nonrendering hwui f16 srgb msaa4 nvpr4 nvprdit4 esinst esinst4 --match ~blurroundrect ~patch_grid ~desk_carsvg ~inc0.gif ~inc1.gif ~incInterlaced.gif ~inc0.jpg ~incGray.jpg ~inc0.wbmp ~inc1.wbmp ~inc0.webp ~inc1.webp ~inc0.ico ~inc1.ico ~inc0.png ~inc1.png ~inc2.png ~inc12.png ~inc13.png ~inc14.png ~inc0.webp ~inc1.webp --outResultsFile /sdcard/revenge_of_the_skiabot/perf/nanobench_abc123_1337000001.json --properties gitHash abc123 build_number 5 --key arch arm64 compiler Clang cpu_or_gpu GPU cpu_or_gpu_value TegraX1 extra_config GN_Android model PixelC os Android; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/nanobench.sh"
+ "[START_DIR]/tmp/nanobench.sh"
],
"name": "write nanobench.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/nanobench.sh",
+ "[START_DIR]/tmp/nanobench.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push nanobench.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"/sdcard/revenge_of_the_skiabot/perf",
"[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-GN_Android/data"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "pull /sdcard/revenge_of_the_skiabot/perf [CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-GN_Android/data"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Release"
+ "[START_DIR]/out/Release"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Mac-Clang-MacMini6.2-CPU-AVX-x86_64-Release-GN/data"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree data",
"~followup_annotations": [
},
{
"cmd": [
- "[SLAVE_BUILD]/out/Release/nanobench",
+ "[START_DIR]/out/Release/nanobench",
"--undefok",
"-i",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/nanobench",
+ "[START_DIR]/skimage/nanobench",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--nogpu",
"--pre_log",
"--scales",
"os",
"Mac"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "nanobench"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/out/Debug/nanobench",
+ "[START_DIR]/out/Debug/nanobench",
"--undefok",
"-i",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/nanobench",
+ "[START_DIR]/skimage/nanobench",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--nocpu",
"--pre_log",
"--images",
"~inc0.webp",
"~inc1.webp"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "nanobench"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Release-GN/data"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree data",
"~followup_annotations": [
{
"cmd": [
"catchsegv",
- "[SLAVE_BUILD]/out/Release/nanobench",
+ "[START_DIR]/out/Release/nanobench",
"--undefok",
"-i",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/nanobench",
+ "[START_DIR]/skimage/nanobench",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--nogpu",
"--pre_log",
"--scales",
"os",
"Ubuntu"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "nanobench"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]/perfdata/Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-ANGLE/data"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree data",
"~followup_annotations": [
{
"cmd": [
"catchsegv",
- "[SLAVE_BUILD]/out/Release/nanobench",
+ "[START_DIR]/out/Release/nanobench",
"--undefok",
"-i",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/nanobench",
+ "[START_DIR]/skimage/nanobench",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--nocpu",
"--pre_log",
"--images",
"os",
"Ubuntu"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "nanobench"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"--track-origins=yes",
"--error-exitcode=1",
"--num-callers=40",
- "--suppressions=[SLAVE_BUILD]/skia/tools/valgrind.supp",
- "[SLAVE_BUILD]/out/Release/nanobench",
+ "--suppressions=[START_DIR]/skia/tools/valgrind.supp",
+ "[START_DIR]/out/Release/nanobench",
"--undefok",
"-i",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/nanobench",
+ "[START_DIR]/skimage/nanobench",
"--nocpu",
"--pre_log",
"--images",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "nanobench"
},
"--track-origins=yes",
"--error-exitcode=1",
"--num-callers=40",
- "--suppressions=[SLAVE_BUILD]/skia/tools/valgrind.supp",
- "[SLAVE_BUILD]/out/Release/nanobench",
+ "--suppressions=[START_DIR]/skia/tools/valgrind.supp",
+ "[START_DIR]/out/Release/nanobench",
"--undefok",
"-i",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/nanobench",
+ "[START_DIR]/skimage/nanobench",
"--nocpu",
"--pre_log",
"--images",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "nanobench --abandonGpuContext"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skp\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skp\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SKP_VERSION"
+ "[START_DIR]\\tmp\\SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SK_IMAGE_VERSION"
+ "[START_DIR]\\tmp\\SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\svg\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\svg\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SVG_VERSION"
+ "[START_DIR]\\tmp\\SVG_VERSION"
],
"name": "write SVG_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]\\out\\Debug_x64\\nanobench",
+ "[START_DIR]\\out\\Debug_x64\\nanobench",
"--undefok",
"-i",
- "[SLAVE_BUILD]\\skia\\resources",
+ "[START_DIR]\\skia\\resources",
"--skps",
- "[SLAVE_BUILD]\\skp",
+ "[START_DIR]\\skp",
"--images",
- "[SLAVE_BUILD]\\skimage\\nanobench",
+ "[START_DIR]\\skimage\\nanobench",
"--svgs",
- "[SLAVE_BUILD]\\svg",
+ "[START_DIR]\\svg",
"--nogpu",
"--pre_log",
"--scales",
"~inc0.webp",
"~inc1.webp"
],
- "cwd": "[SLAVE_BUILD]\\skia",
+ "cwd": "[START_DIR]\\skia",
"name": "nanobench"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skp\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skp\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SKP_VERSION"
+ "[START_DIR]\\tmp\\SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SK_IMAGE_VERSION"
+ "[START_DIR]\\tmp\\SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\svg\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\svg\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SVG_VERSION"
+ "[START_DIR]\\tmp\\SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]\\perfdata\\Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Release\\data"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]\\skia\\infra\\bots\\.recipe_deps\\build\\scripts"
+ "PYTHONPATH": "[START_DIR]\\skia\\infra\\bots\\.recipe_deps\\build\\scripts"
},
"name": "rmtree data",
"~followup_annotations": [
},
{
"cmd": [
- "[SLAVE_BUILD]\\out\\Release_x64\\nanobench",
+ "[START_DIR]\\out\\Release_x64\\nanobench",
"--undefok",
"-i",
- "[SLAVE_BUILD]\\skia\\resources",
+ "[START_DIR]\\skia\\resources",
"--skps",
- "[SLAVE_BUILD]\\skp",
+ "[START_DIR]\\skp",
"--images",
- "[SLAVE_BUILD]\\skimage\\nanobench",
+ "[START_DIR]\\skimage\\nanobench",
"--svgs",
- "[SLAVE_BUILD]\\svg",
+ "[START_DIR]\\svg",
"--nogpu",
"--pre_log",
"--scales",
"os",
"Win"
],
- "cwd": "[SLAVE_BUILD]\\skia",
+ "cwd": "[START_DIR]\\skia",
"name": "nanobench"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skp\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skp\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SKP_VERSION"
+ "[START_DIR]\\tmp\\SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SK_IMAGE_VERSION"
+ "[START_DIR]\\tmp\\SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\svg\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\svg\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SVG_VERSION"
+ "[START_DIR]\\tmp\\SVG_VERSION"
],
"name": "write SVG_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]\\out\\Debug_x64\\nanobench",
+ "[START_DIR]\\out\\Debug_x64\\nanobench",
"--undefok",
"-i",
- "[SLAVE_BUILD]\\skia\\resources",
+ "[START_DIR]\\skia\\resources",
"--skps",
- "[SLAVE_BUILD]\\skp",
+ "[START_DIR]\\skp",
"--images",
- "[SLAVE_BUILD]\\skimage\\nanobench",
+ "[START_DIR]\\skimage\\nanobench",
"--svgs",
- "[SLAVE_BUILD]\\svg",
+ "[START_DIR]\\svg",
"--nocpu",
"--pre_log",
"--images",
"~inc0.webp",
"~inc1.webp"
],
- "cwd": "[SLAVE_BUILD]\\skia",
+ "cwd": "[START_DIR]\\skia",
"name": "nanobench"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skp\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skp\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SKP_VERSION"
+ "[START_DIR]\\tmp\\SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SK_IMAGE_VERSION"
+ "[START_DIR]\\tmp\\SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\svg\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\svg\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SVG_VERSION"
+ "[START_DIR]\\tmp\\SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]\\perfdata\\Perf-Win8-MSVC-ShuttleB-GPU-HD4600-x86_64-Release-Trybot\\data"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]\\skia\\infra\\bots\\.recipe_deps\\build\\scripts"
+ "PYTHONPATH": "[START_DIR]\\skia\\infra\\bots\\.recipe_deps\\build\\scripts"
},
"name": "rmtree data",
"~followup_annotations": [
},
{
"cmd": [
- "[SLAVE_BUILD]\\out\\Release_x64\\nanobench",
+ "[START_DIR]\\out\\Release_x64\\nanobench",
"--undefok",
"-i",
- "[SLAVE_BUILD]\\skia\\resources",
+ "[START_DIR]\\skia\\resources",
"--skps",
- "[SLAVE_BUILD]\\skp",
+ "[START_DIR]\\skp",
"--images",
- "[SLAVE_BUILD]\\skimage\\nanobench",
+ "[START_DIR]\\skimage\\nanobench",
"--svgs",
- "[SLAVE_BUILD]\\svg",
+ "[START_DIR]\\svg",
"--nocpu",
"--pre_log",
"--images",
"os",
"Win8"
],
- "cwd": "[SLAVE_BUILD]\\skia",
+ "cwd": "[START_DIR]\\skia",
"name": "nanobench"
},
{
[
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_install"
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_install"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "install iOSShell"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_if_needed",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_if_needed",
+ "[START_DIR]/skia/resources",
"skiabot/skia_resources"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "push resources to skia_resources"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_cat_file",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_cat_file",
"skiabot/skia_tmp_dir/SKP_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "read SKP_VERSION",
"stdout": "/path/to/tmp/"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_tmp_dir/SKP_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rm skiabot/skia_tmp_dir/SKP_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_skp/skps"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rmdir skiabot/skia_skp/skps"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_mkdir",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_mkdir",
"skiabot/skia_skp/skps"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "mkdir skiabot/skia_skp/skps"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_if_needed",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_if_needed",
+ "[START_DIR]/skp",
"skiabot/skia_skp/skps"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "push skp to skps"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_file",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_file",
+ "[START_DIR]/tmp/SKP_VERSION",
"skiabot/skia_tmp_dir/SKP_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION"
+ "name": "push [START_DIR]/tmp/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_cat_file",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_cat_file",
"skiabot/skia_tmp_dir/SK_IMAGE_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "read SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_tmp_dir/SK_IMAGE_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rm skiabot/skia_tmp_dir/SK_IMAGE_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_images"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rmdir skiabot/skia_images"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_mkdir",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_mkdir",
"skiabot/skia_images"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "mkdir skiabot/skia_images"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_if_needed",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_if_needed",
+ "[START_DIR]/skimage",
"skiabot/skia_images"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "push skimage to skia_images"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_file",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_file",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"skiabot/skia_tmp_dir/SK_IMAGE_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_cat_file",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_cat_file",
"skiabot/skia_tmp_dir/SVG_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "read SVG_VERSION",
"stdout": "/path/to/tmp/"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_tmp_dir/SVG_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rm skiabot/skia_tmp_dir/SVG_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_svg/svgs"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rmdir skiabot/skia_svg/svgs"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_mkdir",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_mkdir",
"skiabot/skia_svg/svgs"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "mkdir skiabot/skia_svg/svgs"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_if_needed",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_if_needed",
+ "[START_DIR]/svg",
"skiabot/skia_svg/svgs"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "push svg to svgs"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_file",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_file",
+ "[START_DIR]/tmp/SVG_VERSION",
"skiabot/skia_tmp_dir/SVG_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION"
+ "name": "push [START_DIR]/tmp/SVG_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_run_skia",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_run_skia",
"--nanobench",
"--undefok",
"-i",
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "nanobench"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_restart"
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_restart"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "reboot"
},
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "wait for reboot"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skp\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skp\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SKP_VERSION"
+ "[START_DIR]\\tmp\\SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SK_IMAGE_VERSION"
+ "[START_DIR]\\tmp\\SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\svg\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\svg\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SVG_VERSION"
+ "[START_DIR]\\tmp\\SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]\\perfdata\\Perf-Win8-MSVC-ShuttleB-GPU-HD4600-x86_64-Release-Trybot\\data"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]\\skia\\infra\\bots\\.recipe_deps\\build\\scripts"
+ "PYTHONPATH": "[START_DIR]\\skia\\infra\\bots\\.recipe_deps\\build\\scripts"
},
"name": "rmtree data",
"~followup_annotations": [
},
{
"cmd": [
- "[SLAVE_BUILD]\\out\\Release_x64\\nanobench",
+ "[START_DIR]\\out\\Release_x64\\nanobench",
"--undefok",
"-i",
- "[SLAVE_BUILD]\\skia\\resources",
+ "[START_DIR]\\skia\\resources",
"--skps",
- "[SLAVE_BUILD]\\skp",
+ "[START_DIR]\\skp",
"--images",
- "[SLAVE_BUILD]\\skimage\\nanobench",
+ "[START_DIR]\\skimage\\nanobench",
"--svgs",
- "[SLAVE_BUILD]\\svg",
+ "[START_DIR]\\svg",
"--nocpu",
"--pre_log",
"--images",
"os",
"Win8"
],
- "cwd": "[SLAVE_BUILD]\\skia",
+ "cwd": "[START_DIR]\\skia",
"name": "nanobench"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skp\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skp\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SKP_VERSION"
+ "[START_DIR]\\tmp\\SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SK_IMAGE_VERSION"
+ "[START_DIR]\\tmp\\SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\svg\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\svg\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SVG_VERSION"
+ "[START_DIR]\\tmp\\SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]\\perfdata\\Perf-Win8-MSVC-ShuttleB-GPU-HD4600-x86_64-Release-Trybot\\data"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]\\skia\\infra\\bots\\.recipe_deps\\build\\scripts"
+ "PYTHONPATH": "[START_DIR]\\skia\\infra\\bots\\.recipe_deps\\build\\scripts"
},
"name": "rmtree data",
"~followup_annotations": [
},
{
"cmd": [
- "[SLAVE_BUILD]\\out\\Release_x64\\nanobench",
+ "[START_DIR]\\out\\Release_x64\\nanobench",
"--undefok",
"-i",
- "[SLAVE_BUILD]\\skia\\resources",
+ "[START_DIR]\\skia\\resources",
"--skps",
- "[SLAVE_BUILD]\\skp",
+ "[START_DIR]\\skp",
"--images",
- "[SLAVE_BUILD]\\skimage\\nanobench",
+ "[START_DIR]\\skimage\\nanobench",
"--svgs",
- "[SLAVE_BUILD]\\svg",
+ "[START_DIR]\\svg",
"--nocpu",
"--pre_log",
"--images",
"os",
"Win8"
],
- "cwd": "[SLAVE_BUILD]\\skia",
+ "cwd": "[START_DIR]\\skia",
"name": "nanobench"
},
{
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"--track-origins=yes",
"--error-exitcode=1",
"--num-callers=40",
- "--suppressions=[SLAVE_BUILD]/skia/tools/valgrind.supp",
- "[SLAVE_BUILD]/out/Release/nanobench",
+ "--suppressions=[START_DIR]/skia/tools/valgrind.supp",
+ "[START_DIR]/out/Release/nanobench",
"--undefok",
"-i",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/nanobench",
+ "[START_DIR]/skimage/nanobench",
"--nocpu",
"--pre_log",
"--images",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "nanobench"
},
"--track-origins=yes",
"--error-exitcode=1",
"--num-callers=40",
- "--suppressions=[SLAVE_BUILD]/skia/tools/valgrind.supp",
- "[SLAVE_BUILD]/out/Release/nanobench",
+ "--suppressions=[START_DIR]/skia/tools/valgrind.supp",
+ "[START_DIR]/out/Release/nanobench",
"--undefok",
"-i",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/nanobench",
+ "[START_DIR]/skimage/nanobench",
"--nocpu",
"--pre_log",
"--images",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "nanobench --abandonGpuContext"
},
path_config='kitchen',
swarm_out_dir='[SWARM_OUT_DIR]') +
api.path.exists(
- api.path['slave_build'].join('skia'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia'),
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skimage', 'VERSION'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skp', 'VERSION'),
- api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
+ api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
)
)
if 'Trybot' in builder:
patchset=1,
issue=2147533002L) +
api.path.exists(
- api.path['slave_build'].join('skia'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia'),
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skimage', 'VERSION'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skp', 'VERSION'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'svg', 'VERSION'),
- api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
+ api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
) +
api.platform('win', 64)
)
gerrit_url='https://skia-review.googlesource.com/',
) +
api.path.exists(
- api.path['slave_build'].join('skia'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia'),
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skimage', 'VERSION'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skp', 'VERSION'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'svg', 'VERSION'),
- api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
+ api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
) +
api.platform('win', 64) +
api.step_data('get swarming bot id',
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
"PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "bot_update",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Release/skpbench",
+ "[START_DIR]/out/Release/skpbench",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push skpbench"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/skia/tools/skpbench/skpbench.py",
+ "[START_DIR]/skia/tools/skpbench/skpbench.py",
"/data/local/tmp/skpbench",
"/sdcard/revenge_of_the_skiabot/skps",
"--adb",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/skia/tools/skpbench/skiaperf.py",
+ "[START_DIR]/skia/tools/skpbench/skiaperf.py",
"[CUSTOM_[SWARM_OUT_DIR]]/table",
"--properties",
"gitHash",
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Release"
+ "[START_DIR]/out/Release"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Release/skpbench",
+ "[START_DIR]/out/Release/skpbench",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push skpbench"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/skia/tools/skpbench/skpbench.py",
+ "[START_DIR]/skia/tools/skpbench/skpbench.py",
"/data/local/tmp/skpbench",
"/sdcard/revenge_of_the_skiabot/skps",
"--adb",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/skia/tools/skpbench/skiaperf.py",
+ "[START_DIR]/skia/tools/skpbench/skiaperf.py",
"[CUSTOM_[SWARM_OUT_DIR]]/table",
"--properties",
"gitHash",
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Release"
+ "[START_DIR]/out/Release"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
path_config='kitchen',
swarm_out_dir='[SWARM_OUT_DIR]') +
api.path.exists(
- api.path['slave_build'].join('skia'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia'),
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skp', 'VERSION'),
) +
api.step_data('get swarming bot id',
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"-rf",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "get uninteresting hashes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"/sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Release/dm",
+ "[START_DIR]/out/Release/dm",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/dm --undefok --resourcePath /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/dm --colorImages /sdcard/revenge_of_the_skiabot/images/colorspace --nameByHash --properties gitHash abc123 master client.skia builder Test-Android-Clang-AndroidOne-CPU-MT6582-arm-Release-GN_Android build_number 5 --svgs /sdcard/revenge_of_the_skiabot/svgs --key arch arm compiler Clang configuration Release cpu_or_gpu CPU cpu_or_gpu_value MT6582 extra_config GN_Android model AndroidOne os Android --uninterestingHashesFile /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt --writePath /sdcard/revenge_of_the_skiabot/dm_out --nogpu --config 8888 gpu gpudft gpusrgb msaa4 serialize-8888 tiles_rt-8888 pic-8888 --src tests gm image colorImage svg --blacklist gpusrgb image _ _ _ test _ GrShape serialize-8888 gm _ bleed_image serialize-8888 gm _ c_gms serialize-8888 gm _ colortype serialize-8888 gm _ colortype_xfermodes serialize-8888 gm _ drawfilter serialize-8888 gm _ fontmgr_bounds_0.75_0 serialize-8888 gm _ fontmgr_bounds_1_-0.25 serialize-8888 gm _ fontmgr_bounds serialize-8888 gm _ fontmgr_match serialize-8888 gm _ fontmgr_iter serialize-8888 gm _ imagemasksubset serialize-8888 gm _ bitmapfilters serialize-8888 gm _ bitmapshaders serialize-8888 gm _ bleed serialize-8888 gm _ bleed_alpha_bmp serialize-8888 gm _ bleed_alpha_bmp_shader serialize-8888 gm _ convex_poly_clip serialize-8888 gm _ extractalpha serialize-8888 gm _ filterbitmap_checkerboard_32_32_g8 serialize-8888 gm _ filterbitmap_image_mandrill_64 serialize-8888 gm _ shadows serialize-8888 gm _ simpleaaclip_aaclip serialize-8888 gm _ composeshader_bitmap serialize-8888 gm _ scaled_tilemodes_npot serialize-8888 gm _ scaled_tilemodes serialize-8888 gm _ typefacerendering_pfaMac serialize-8888 gm _ parsedpaths serialize-8888 gm _ ImageGeneratorExternal_rect serialize-8888 gm _ ImageGeneratorExternal_shader serialize-8888 gm _ bleed_alpha_image serialize-8888 gm _ bleed_alpha_image_shader serialize-8888 gm _ verylargebitmap serialize-8888 gm _ verylarge_picture_image pic-8888 gm _ drawfilter pic-8888 gm _ image-cacherator-from-picture serialize-8888 gm _ image-cacherator-from-picture pic-8888 gm _ image-cacherator-from-raster serialize-8888 gm _ image-cacherator-from-raster pic-8888 gm _ image-cacherator-from-ctable serialize-8888 gm _ image-cacherator-from-ctable pic-8888 gm _ gamut serialize-8888 gm _ gamut --match ~WritePixels; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/dm.sh"
+ "[START_DIR]/tmp/dm.sh"
],
"name": "write dm.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/dm.sh",
+ "[START_DIR]/tmp/dm.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"/sdcard/revenge_of_the_skiabot/dm_out",
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "pull /sdcard/revenge_of_the_skiabot/dm_out [CUSTOM_[SWARM_OUT_DIR]]/dm"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Release"
+ "[START_DIR]/out/Release"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"-rf",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "get uninteresting hashes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"/sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Release/dm",
+ "[START_DIR]/out/Release/dm",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/dm --undefok --resourcePath /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/dm --colorImages /sdcard/revenge_of_the_skiabot/images/colorspace --nameByHash --properties gitHash abc123 master client.skia builder Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-GN_Android build_number 5 --svgs /sdcard/revenge_of_the_skiabot/svgs --key arch arm compiler Clang configuration Release cpu_or_gpu GPU cpu_or_gpu_value Mali400MP2 extra_config GN_Android model AndroidOne os Android --uninterestingHashesFile /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt --writePath /sdcard/revenge_of_the_skiabot/dm_out --nocpu --config 8888 gpu gpudft gpusrgb msaa4 serialize-8888 tiles_rt-8888 pic-8888 --src tests gm image colorImage svg --blacklist gpusrgb image _ _ _ test _ GrShape serialize-8888 gm _ bleed_image serialize-8888 gm _ c_gms serialize-8888 gm _ colortype serialize-8888 gm _ colortype_xfermodes serialize-8888 gm _ drawfilter serialize-8888 gm _ fontmgr_bounds_0.75_0 serialize-8888 gm _ fontmgr_bounds_1_-0.25 serialize-8888 gm _ fontmgr_bounds serialize-8888 gm _ fontmgr_match serialize-8888 gm _ fontmgr_iter serialize-8888 gm _ imagemasksubset serialize-8888 gm _ bitmapfilters serialize-8888 gm _ bitmapshaders serialize-8888 gm _ bleed serialize-8888 gm _ bleed_alpha_bmp serialize-8888 gm _ bleed_alpha_bmp_shader serialize-8888 gm _ convex_poly_clip serialize-8888 gm _ extractalpha serialize-8888 gm _ filterbitmap_checkerboard_32_32_g8 serialize-8888 gm _ filterbitmap_image_mandrill_64 serialize-8888 gm _ shadows serialize-8888 gm _ simpleaaclip_aaclip serialize-8888 gm _ composeshader_bitmap serialize-8888 gm _ scaled_tilemodes_npot serialize-8888 gm _ scaled_tilemodes serialize-8888 gm _ typefacerendering_pfaMac serialize-8888 gm _ parsedpaths serialize-8888 gm _ ImageGeneratorExternal_rect serialize-8888 gm _ ImageGeneratorExternal_shader serialize-8888 gm _ bleed_alpha_image serialize-8888 gm _ bleed_alpha_image_shader serialize-8888 gm _ verylargebitmap serialize-8888 gm _ verylarge_picture_image pic-8888 gm _ drawfilter pic-8888 gm _ image-cacherator-from-picture serialize-8888 gm _ image-cacherator-from-picture pic-8888 gm _ image-cacherator-from-raster serialize-8888 gm _ image-cacherator-from-raster pic-8888 gm _ image-cacherator-from-ctable serialize-8888 gm _ image-cacherator-from-ctable pic-8888 gm _ gamut serialize-8888 gm _ gamut _ image _ interlaced1.png _ image _ interlaced2.png _ image _ interlaced3.png _ image _ .arw _ image _ .cr2 _ image _ .dng _ image _ .nef _ image _ .nrw _ image _ .orf _ image _ .raf _ image _ .rw2 _ image _ .pef _ image _ .srw _ image _ .ARW _ image _ .CR2 _ image _ .DNG _ image _ .NEF _ image _ .NRW _ image _ .ORF _ image _ .RAF _ image _ .RW2 _ image _ .PEF _ image _ .SRW --match ~WritePixels; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/dm.sh"
+ "[START_DIR]/tmp/dm.sh"
],
"name": "write dm.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/dm.sh",
+ "[START_DIR]/tmp/dm.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"/sdcard/revenge_of_the_skiabot/dm_out",
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "pull /sdcard/revenge_of_the_skiabot/dm_out [CUSTOM_[SWARM_OUT_DIR]]/dm"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Release"
+ "[START_DIR]/out/Release"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"-rf",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "get uninteresting hashes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"/sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/dm --undefok --resourcePath /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/dm --colorImages /sdcard/revenge_of_the_skiabot/images/colorspace --nameByHash --properties gitHash abc123 master client.skia builder Test-Android-Clang-GalaxyS7-GPU-Adreno530-arm64-Debug-GN_Android build_number 5 --svgs /sdcard/revenge_of_the_skiabot/svgs --key arch arm64 compiler Clang configuration Debug cpu_or_gpu GPU cpu_or_gpu_value Adreno530 extra_config GN_Android model GalaxyS7 os Android --uninterestingHashesFile /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt --writePath /sdcard/revenge_of_the_skiabot/dm_out --nocpu --config 8888 gpu gpudft gpusrgb msaa4 serialize-8888 tiles_rt-8888 pic-8888 --src tests gm image colorImage svg --threads 0 --blacklist gpusrgb image _ _ _ test _ GrShape serialize-8888 gm _ bleed_image serialize-8888 gm _ c_gms serialize-8888 gm _ colortype serialize-8888 gm _ colortype_xfermodes serialize-8888 gm _ drawfilter serialize-8888 gm _ fontmgr_bounds_0.75_0 serialize-8888 gm _ fontmgr_bounds_1_-0.25 serialize-8888 gm _ fontmgr_bounds serialize-8888 gm _ fontmgr_match serialize-8888 gm _ fontmgr_iter serialize-8888 gm _ imagemasksubset serialize-8888 gm _ bitmapfilters serialize-8888 gm _ bitmapshaders serialize-8888 gm _ bleed serialize-8888 gm _ bleed_alpha_bmp serialize-8888 gm _ bleed_alpha_bmp_shader serialize-8888 gm _ convex_poly_clip serialize-8888 gm _ extractalpha serialize-8888 gm _ filterbitmap_checkerboard_32_32_g8 serialize-8888 gm _ filterbitmap_image_mandrill_64 serialize-8888 gm _ shadows serialize-8888 gm _ simpleaaclip_aaclip serialize-8888 gm _ composeshader_bitmap serialize-8888 gm _ scaled_tilemodes_npot serialize-8888 gm _ scaled_tilemodes serialize-8888 gm _ typefacerendering_pfaMac serialize-8888 gm _ parsedpaths serialize-8888 gm _ ImageGeneratorExternal_rect serialize-8888 gm _ ImageGeneratorExternal_shader serialize-8888 gm _ bleed_alpha_image serialize-8888 gm _ bleed_alpha_image_shader serialize-8888 gm _ verylargebitmap serialize-8888 gm _ verylarge_picture_image pic-8888 gm _ drawfilter pic-8888 gm _ image-cacherator-from-picture serialize-8888 gm _ image-cacherator-from-picture pic-8888 gm _ image-cacherator-from-raster serialize-8888 gm _ image-cacherator-from-raster pic-8888 gm _ image-cacherator-from-ctable serialize-8888 gm _ image-cacherator-from-ctable pic-8888 gm _ gamut serialize-8888 gm _ gamut _ image _ interlaced1.png _ image _ interlaced2.png _ image _ interlaced3.png _ image _ .arw _ image _ .cr2 _ image _ .dng _ image _ .nef _ image _ .nrw _ image _ .orf _ image _ .raf _ image _ .rw2 _ image _ .pef _ image _ .srw _ image _ .ARW _ image _ .CR2 _ image _ .DNG _ image _ .NEF _ image _ .NRW _ image _ .ORF _ image _ .RAF _ image _ .RW2 _ image _ .PEF _ image _ .SRW; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/dm.sh"
+ "[START_DIR]/tmp/dm.sh"
],
"name": "write dm.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/dm.sh",
+ "[START_DIR]/tmp/dm.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"/sdcard/revenge_of_the_skiabot/dm_out",
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "pull /sdcard/revenge_of_the_skiabot/dm_out [CUSTOM_[SWARM_OUT_DIR]]/dm"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"-rf",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "get uninteresting hashes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"/sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/dm --undefok --resourcePath /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/dm --colorImages /sdcard/revenge_of_the_skiabot/images/colorspace --nameByHash --properties gitHash abc123 master client.skia builder Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-GN_Android build_number 5 --svgs /sdcard/revenge_of_the_skiabot/svgs --key arch arm64 compiler Clang configuration Debug cpu_or_gpu GPU cpu_or_gpu_value TegraX1 extra_config GN_Android model NVIDIA_Shield os Android --uninterestingHashesFile /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt --writePath /sdcard/revenge_of_the_skiabot/dm_out --nocpu --config 8888 gl gldft glsrgb glmsaa4 glinstdit4 serialize-8888 tiles_rt-8888 pic-8888 glinst --src tests gm image colorImage svg --blacklist glsrgb image _ _ _ test _ GrShape serialize-8888 gm _ bleed_image serialize-8888 gm _ c_gms serialize-8888 gm _ colortype serialize-8888 gm _ colortype_xfermodes serialize-8888 gm _ drawfilter serialize-8888 gm _ fontmgr_bounds_0.75_0 serialize-8888 gm _ fontmgr_bounds_1_-0.25 serialize-8888 gm _ fontmgr_bounds serialize-8888 gm _ fontmgr_match serialize-8888 gm _ fontmgr_iter serialize-8888 gm _ imagemasksubset serialize-8888 gm _ bitmapfilters serialize-8888 gm _ bitmapshaders serialize-8888 gm _ bleed serialize-8888 gm _ bleed_alpha_bmp serialize-8888 gm _ bleed_alpha_bmp_shader serialize-8888 gm _ convex_poly_clip serialize-8888 gm _ extractalpha serialize-8888 gm _ filterbitmap_checkerboard_32_32_g8 serialize-8888 gm _ filterbitmap_image_mandrill_64 serialize-8888 gm _ shadows serialize-8888 gm _ simpleaaclip_aaclip serialize-8888 gm _ composeshader_bitmap serialize-8888 gm _ scaled_tilemodes_npot serialize-8888 gm _ scaled_tilemodes serialize-8888 gm _ typefacerendering_pfaMac serialize-8888 gm _ parsedpaths serialize-8888 gm _ ImageGeneratorExternal_rect serialize-8888 gm _ ImageGeneratorExternal_shader serialize-8888 gm _ bleed_alpha_image serialize-8888 gm _ bleed_alpha_image_shader serialize-8888 gm _ verylargebitmap serialize-8888 gm _ verylarge_picture_image pic-8888 gm _ drawfilter pic-8888 gm _ image-cacherator-from-picture serialize-8888 gm _ image-cacherator-from-picture pic-8888 gm _ image-cacherator-from-raster serialize-8888 gm _ image-cacherator-from-raster pic-8888 gm _ image-cacherator-from-ctable serialize-8888 gm _ image-cacherator-from-ctable pic-8888 gm _ gamut serialize-8888 gm _ gamut _ image _ interlaced1.png _ image _ interlaced2.png _ image _ interlaced3.png _ image _ .arw _ image _ .cr2 _ image _ .dng _ image _ .nef _ image _ .nrw _ image _ .orf _ image _ .raf _ image _ .rw2 _ image _ .pef _ image _ .srw _ image _ .ARW _ image _ .CR2 _ image _ .DNG _ image _ .NEF _ image _ .NRW _ image _ .ORF _ image _ .RAF _ image _ .RW2 _ image _ .PEF _ image _ .SRW; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/dm.sh"
+ "[START_DIR]/tmp/dm.sh"
],
"name": "write dm.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/dm.sh",
+ "[START_DIR]/tmp/dm.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"/sdcard/revenge_of_the_skiabot/dm_out",
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "pull /sdcard/revenge_of_the_skiabot/dm_out [CUSTOM_[SWARM_OUT_DIR]]/dm"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"-rf",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "get uninteresting hashes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"/sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Release/dm",
+ "[START_DIR]/out/Release/dm",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/dm --undefok --resourcePath /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/dm --colorImages /sdcard/revenge_of_the_skiabot/images/colorspace --nameByHash --properties gitHash abc123 master client.skia builder Test-Android-Clang-Nexus10-GPU-MaliT604-arm-Release-GN_Android build_number 5 --svgs /sdcard/revenge_of_the_skiabot/svgs --key arch arm compiler Clang configuration Release cpu_or_gpu GPU cpu_or_gpu_value MaliT604 extra_config GN_Android model Nexus10 os Android --uninterestingHashesFile /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt --writePath /sdcard/revenge_of_the_skiabot/dm_out --nocpu --config 8888 gpu gpudft gpusrgb msaa4 serialize-8888 tiles_rt-8888 pic-8888 --src tests gm image colorImage svg --blacklist gpusrgb image _ _ _ test _ GrShape serialize-8888 gm _ bleed_image serialize-8888 gm _ c_gms serialize-8888 gm _ colortype serialize-8888 gm _ colortype_xfermodes serialize-8888 gm _ drawfilter serialize-8888 gm _ fontmgr_bounds_0.75_0 serialize-8888 gm _ fontmgr_bounds_1_-0.25 serialize-8888 gm _ fontmgr_bounds serialize-8888 gm _ fontmgr_match serialize-8888 gm _ fontmgr_iter serialize-8888 gm _ imagemasksubset serialize-8888 gm _ bitmapfilters serialize-8888 gm _ bitmapshaders serialize-8888 gm _ bleed serialize-8888 gm _ bleed_alpha_bmp serialize-8888 gm _ bleed_alpha_bmp_shader serialize-8888 gm _ convex_poly_clip serialize-8888 gm _ extractalpha serialize-8888 gm _ filterbitmap_checkerboard_32_32_g8 serialize-8888 gm _ filterbitmap_image_mandrill_64 serialize-8888 gm _ shadows serialize-8888 gm _ simpleaaclip_aaclip serialize-8888 gm _ composeshader_bitmap serialize-8888 gm _ scaled_tilemodes_npot serialize-8888 gm _ scaled_tilemodes serialize-8888 gm _ typefacerendering_pfaMac serialize-8888 gm _ parsedpaths serialize-8888 gm _ ImageGeneratorExternal_rect serialize-8888 gm _ ImageGeneratorExternal_shader serialize-8888 gm _ bleed_alpha_image serialize-8888 gm _ bleed_alpha_image_shader serialize-8888 gm _ verylargebitmap serialize-8888 gm _ verylarge_picture_image pic-8888 gm _ drawfilter pic-8888 gm _ image-cacherator-from-picture serialize-8888 gm _ image-cacherator-from-picture pic-8888 gm _ image-cacherator-from-raster serialize-8888 gm _ image-cacherator-from-raster pic-8888 gm _ image-cacherator-from-ctable serialize-8888 gm _ image-cacherator-from-ctable pic-8888 gm _ gamut serialize-8888 gm _ gamut _ image _ interlaced1.png _ image _ interlaced2.png _ image _ interlaced3.png _ image _ .arw _ image _ .cr2 _ image _ .dng _ image _ .nef _ image _ .nrw _ image _ .orf _ image _ .raf _ image _ .rw2 _ image _ .pef _ image _ .srw _ image _ .ARW _ image _ .CR2 _ image _ .DNG _ image _ .NEF _ image _ .NRW _ image _ .ORF _ image _ .RAF _ image _ .RW2 _ image _ .PEF _ image _ .SRW --match ~CopySurface; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/dm.sh"
+ "[START_DIR]/tmp/dm.sh"
],
"name": "write dm.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/dm.sh",
+ "[START_DIR]/tmp/dm.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"/sdcard/revenge_of_the_skiabot/dm_out",
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "pull /sdcard/revenge_of_the_skiabot/dm_out [CUSTOM_[SWARM_OUT_DIR]]/dm"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Release"
+ "[START_DIR]/out/Release"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"-rf",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "get uninteresting hashes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"/sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/dm --undefok --resourcePath /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/dm --colorImages /sdcard/revenge_of_the_skiabot/images/colorspace --nameByHash --properties gitHash abc123 master client.skia builder Test-Android-Clang-Nexus6-GPU-Adreno420-arm-Debug-GN_Android build_number 5 --svgs /sdcard/revenge_of_the_skiabot/svgs --key arch arm compiler Clang configuration Debug cpu_or_gpu GPU cpu_or_gpu_value Adreno420 extra_config GN_Android model Nexus6 os Android --uninterestingHashesFile /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt --writePath /sdcard/revenge_of_the_skiabot/dm_out --nocpu --config 8888 gpu gpudft gpusrgb msaa4 serialize-8888 tiles_rt-8888 pic-8888 esinst --src tests gm image colorImage svg --blacklist gpusrgb image _ _ _ test _ GrShape serialize-8888 gm _ bleed_image serialize-8888 gm _ c_gms serialize-8888 gm _ colortype serialize-8888 gm _ colortype_xfermodes serialize-8888 gm _ drawfilter serialize-8888 gm _ fontmgr_bounds_0.75_0 serialize-8888 gm _ fontmgr_bounds_1_-0.25 serialize-8888 gm _ fontmgr_bounds serialize-8888 gm _ fontmgr_match serialize-8888 gm _ fontmgr_iter serialize-8888 gm _ imagemasksubset serialize-8888 gm _ bitmapfilters serialize-8888 gm _ bitmapshaders serialize-8888 gm _ bleed serialize-8888 gm _ bleed_alpha_bmp serialize-8888 gm _ bleed_alpha_bmp_shader serialize-8888 gm _ convex_poly_clip serialize-8888 gm _ extractalpha serialize-8888 gm _ filterbitmap_checkerboard_32_32_g8 serialize-8888 gm _ filterbitmap_image_mandrill_64 serialize-8888 gm _ shadows serialize-8888 gm _ simpleaaclip_aaclip serialize-8888 gm _ composeshader_bitmap serialize-8888 gm _ scaled_tilemodes_npot serialize-8888 gm _ scaled_tilemodes serialize-8888 gm _ typefacerendering_pfaMac serialize-8888 gm _ parsedpaths serialize-8888 gm _ ImageGeneratorExternal_rect serialize-8888 gm _ ImageGeneratorExternal_shader serialize-8888 gm _ bleed_alpha_image serialize-8888 gm _ bleed_alpha_image_shader serialize-8888 gm _ verylargebitmap serialize-8888 gm _ verylarge_picture_image pic-8888 gm _ drawfilter pic-8888 gm _ image-cacherator-from-picture serialize-8888 gm _ image-cacherator-from-picture pic-8888 gm _ image-cacherator-from-raster serialize-8888 gm _ image-cacherator-from-raster pic-8888 gm _ image-cacherator-from-ctable serialize-8888 gm _ image-cacherator-from-ctable pic-8888 gm _ gamut serialize-8888 gm _ gamut _ image _ interlaced1.png _ image _ interlaced2.png _ image _ interlaced3.png _ image _ .arw _ image _ .cr2 _ image _ .dng _ image _ .nef _ image _ .nrw _ image _ .orf _ image _ .raf _ image _ .rw2 _ image _ .pef _ image _ .srw _ image _ .ARW _ image _ .CR2 _ image _ .DNG _ image _ .NEF _ image _ .NRW _ image _ .ORF _ image _ .RAF _ image _ .RW2 _ image _ .PEF _ image _ .SRW; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/dm.sh"
+ "[START_DIR]/tmp/dm.sh"
],
"name": "write dm.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/dm.sh",
+ "[START_DIR]/tmp/dm.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"/sdcard/revenge_of_the_skiabot/dm_out",
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "pull /sdcard/revenge_of_the_skiabot/dm_out [CUSTOM_[SWARM_OUT_DIR]]/dm"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"-rf",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "get uninteresting hashes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"/sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/dm --undefok --resourcePath /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/dm --colorImages /sdcard/revenge_of_the_skiabot/images/colorspace --nameByHash --properties gitHash abc123 master client.skia builder Test-Android-Clang-Nexus6p-GPU-Adreno430-arm64-Debug-GN_Android_Vulkan build_number 5 --svgs /sdcard/revenge_of_the_skiabot/svgs --key arch arm64 compiler Clang configuration Debug cpu_or_gpu GPU cpu_or_gpu_value Adreno430 extra_config GN_Android_Vulkan model Nexus6p os Android --uninterestingHashesFile /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt --writePath /sdcard/revenge_of_the_skiabot/dm_out --nocpu --config vk --src tests gm image colorImage svg --blacklist _ test _ GrShape _ image _ interlaced1.png _ image _ interlaced2.png _ image _ interlaced3.png _ image _ .arw _ image _ .cr2 _ image _ .dng _ image _ .nef _ image _ .nrw _ image _ .orf _ image _ .raf _ image _ .rw2 _ image _ .pef _ image _ .srw _ image _ .ARW _ image _ .CR2 _ image _ .DNG _ image _ .NEF _ image _ .NRW _ image _ .ORF _ image _ .RAF _ image _ .RW2 _ image _ .PEF _ image _ .SRW --match ~XfermodeImageFilterCroppedInput ~GrTextureStripAtlasFlush ~CopySurface; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/dm.sh"
+ "[START_DIR]/tmp/dm.sh"
],
"name": "write dm.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/dm.sh",
+ "[START_DIR]/tmp/dm.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"/sdcard/revenge_of_the_skiabot/dm_out",
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "pull /sdcard/revenge_of_the_skiabot/dm_out [CUSTOM_[SWARM_OUT_DIR]]/dm"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"-rf",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "get uninteresting hashes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"/sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/dm --undefok --resourcePath /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/dm --colorImages /sdcard/revenge_of_the_skiabot/images/colorspace --nameByHash --properties gitHash abc123 master client.skia builder Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-GN_Android build_number 5 --svgs /sdcard/revenge_of_the_skiabot/svgs --key arch arm compiler Clang configuration Debug cpu_or_gpu GPU cpu_or_gpu_value Tegra3 extra_config GN_Android model Nexus7 os Android --uninterestingHashesFile /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt --writePath /sdcard/revenge_of_the_skiabot/dm_out --nocpu --config 8888 gpu gpudft gpusrgb serialize-8888 tiles_rt-8888 pic-8888 --src tests gm image colorImage svg --blacklist gpusrgb image _ _ _ test _ GrShape serialize-8888 gm _ bleed_image serialize-8888 gm _ c_gms serialize-8888 gm _ colortype serialize-8888 gm _ colortype_xfermodes serialize-8888 gm _ drawfilter serialize-8888 gm _ fontmgr_bounds_0.75_0 serialize-8888 gm _ fontmgr_bounds_1_-0.25 serialize-8888 gm _ fontmgr_bounds serialize-8888 gm _ fontmgr_match serialize-8888 gm _ fontmgr_iter serialize-8888 gm _ imagemasksubset serialize-8888 gm _ bitmapfilters serialize-8888 gm _ bitmapshaders serialize-8888 gm _ bleed serialize-8888 gm _ bleed_alpha_bmp serialize-8888 gm _ bleed_alpha_bmp_shader serialize-8888 gm _ convex_poly_clip serialize-8888 gm _ extractalpha serialize-8888 gm _ filterbitmap_checkerboard_32_32_g8 serialize-8888 gm _ filterbitmap_image_mandrill_64 serialize-8888 gm _ shadows serialize-8888 gm _ simpleaaclip_aaclip serialize-8888 gm _ composeshader_bitmap serialize-8888 gm _ scaled_tilemodes_npot serialize-8888 gm _ scaled_tilemodes serialize-8888 gm _ typefacerendering_pfaMac serialize-8888 gm _ parsedpaths serialize-8888 gm _ ImageGeneratorExternal_rect serialize-8888 gm _ ImageGeneratorExternal_shader serialize-8888 gm _ bleed_alpha_image serialize-8888 gm _ bleed_alpha_image_shader serialize-8888 gm _ verylargebitmap serialize-8888 gm _ verylarge_picture_image pic-8888 gm _ drawfilter pic-8888 gm _ image-cacherator-from-picture serialize-8888 gm _ image-cacherator-from-picture pic-8888 gm _ image-cacherator-from-raster serialize-8888 gm _ image-cacherator-from-raster pic-8888 gm _ image-cacherator-from-ctable serialize-8888 gm _ image-cacherator-from-ctable pic-8888 gm _ gamut serialize-8888 gm _ gamut _ image _ interlaced1.png _ image _ interlaced2.png _ image _ interlaced3.png _ image _ .arw _ image _ .cr2 _ image _ .dng _ image _ .nef _ image _ .nrw _ image _ .orf _ image _ .raf _ image _ .rw2 _ image _ .pef _ image _ .srw _ image _ .ARW _ image _ .CR2 _ image _ .DNG _ image _ .NEF _ image _ .NRW _ image _ .ORF _ image _ .RAF _ image _ .RW2 _ image _ .PEF _ image _ .SRW; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/dm.sh"
+ "[START_DIR]/tmp/dm.sh"
],
"name": "write dm.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/dm.sh",
+ "[START_DIR]/tmp/dm.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"/sdcard/revenge_of_the_skiabot/dm_out",
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "pull /sdcard/revenge_of_the_skiabot/dm_out [CUSTOM_[SWARM_OUT_DIR]]/dm"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"-rf",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "get uninteresting hashes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"/sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/dm --undefok --resourcePath /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/dm --colorImages /sdcard/revenge_of_the_skiabot/images/colorspace --nameByHash --properties gitHash abc123 master client.skia builder Test-Android-Clang-Nexus9-CPU-Denver-arm64-Debug-GN_Android build_number 5 --svgs /sdcard/revenge_of_the_skiabot/svgs --key arch arm64 compiler Clang configuration Debug cpu_or_gpu CPU cpu_or_gpu_value Denver extra_config GN_Android model Nexus9 os Android --uninterestingHashesFile /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt --writePath /sdcard/revenge_of_the_skiabot/dm_out --nogpu --config 8888 gpu gpudft gpusrgb msaa4 serialize-8888 tiles_rt-8888 pic-8888 --src tests gm image colorImage svg --blacklist gpusrgb image _ _ _ test _ GrShape serialize-8888 gm _ bleed_image serialize-8888 gm _ c_gms serialize-8888 gm _ colortype serialize-8888 gm _ colortype_xfermodes serialize-8888 gm _ drawfilter serialize-8888 gm _ fontmgr_bounds_0.75_0 serialize-8888 gm _ fontmgr_bounds_1_-0.25 serialize-8888 gm _ fontmgr_bounds serialize-8888 gm _ fontmgr_match serialize-8888 gm _ fontmgr_iter serialize-8888 gm _ imagemasksubset serialize-8888 gm _ bitmapfilters serialize-8888 gm _ bitmapshaders serialize-8888 gm _ bleed serialize-8888 gm _ bleed_alpha_bmp serialize-8888 gm _ bleed_alpha_bmp_shader serialize-8888 gm _ convex_poly_clip serialize-8888 gm _ extractalpha serialize-8888 gm _ filterbitmap_checkerboard_32_32_g8 serialize-8888 gm _ filterbitmap_image_mandrill_64 serialize-8888 gm _ shadows serialize-8888 gm _ simpleaaclip_aaclip serialize-8888 gm _ composeshader_bitmap serialize-8888 gm _ scaled_tilemodes_npot serialize-8888 gm _ scaled_tilemodes serialize-8888 gm _ typefacerendering_pfaMac serialize-8888 gm _ parsedpaths serialize-8888 gm _ ImageGeneratorExternal_rect serialize-8888 gm _ ImageGeneratorExternal_shader serialize-8888 gm _ bleed_alpha_image serialize-8888 gm _ bleed_alpha_image_shader serialize-8888 gm _ verylargebitmap serialize-8888 gm _ verylarge_picture_image pic-8888 gm _ drawfilter pic-8888 gm _ image-cacherator-from-picture serialize-8888 gm _ image-cacherator-from-picture pic-8888 gm _ image-cacherator-from-raster serialize-8888 gm _ image-cacherator-from-raster pic-8888 gm _ image-cacherator-from-ctable serialize-8888 gm _ image-cacherator-from-ctable pic-8888 gm _ gamut serialize-8888 gm _ gamut _ image _ .arw _ image _ .cr2 _ image _ .dng _ image _ .nef _ image _ .nrw _ image _ .orf _ image _ .raf _ image _ .rw2 _ image _ .pef _ image _ .srw _ image _ .ARW _ image _ .CR2 _ image _ .DNG _ image _ .NEF _ image _ .NRW _ image _ .ORF _ image _ .RAF _ image _ .RW2 _ image _ .PEF _ image _ .SRW --noRAW_threading; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/dm.sh"
+ "[START_DIR]/tmp/dm.sh"
],
"name": "write dm.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/dm.sh",
+ "[START_DIR]/tmp/dm.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"/sdcard/revenge_of_the_skiabot/dm_out",
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "pull /sdcard/revenge_of_the_skiabot/dm_out [CUSTOM_[SWARM_OUT_DIR]]/dm"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"-rf",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "get uninteresting hashes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"/sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Release/dm",
+ "[START_DIR]/out/Release/dm",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/dm --undefok --resourcePath /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/dm --colorImages /sdcard/revenge_of_the_skiabot/images/colorspace --nameByHash --properties gitHash abc123 master client.skia builder Test-Android-Clang-NexusPlayer-CPU-SSE4-x86-Release-GN_Android build_number 5 --svgs /sdcard/revenge_of_the_skiabot/svgs --key arch x86 compiler Clang configuration Release cpu_or_gpu CPU cpu_or_gpu_value SSE4 extra_config GN_Android model NexusPlayer os Android --uninterestingHashesFile /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt --writePath /sdcard/revenge_of_the_skiabot/dm_out --nogpu --config 8888 gpu gpusrgb --src tests gm image colorImage svg --blacklist gpusrgb image _ _ _ test _ GrShape --match ~ResourceCache --noRAW_threading; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/dm.sh"
+ "[START_DIR]/tmp/dm.sh"
],
"name": "write dm.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/dm.sh",
+ "[START_DIR]/tmp/dm.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"/sdcard/revenge_of_the_skiabot/dm_out",
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "pull /sdcard/revenge_of_the_skiabot/dm_out [CUSTOM_[SWARM_OUT_DIR]]/dm"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Release"
+ "[START_DIR]/out/Release"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"-rf",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "get uninteresting hashes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"/sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/dm --undefok --resourcePath /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/dm --colorImages /sdcard/revenge_of_the_skiabot/images/colorspace --nameByHash --properties gitHash abc123 master client.skia builder Test-Android-Clang-PixelC-GPU-TegraX1-arm64-Debug-GN_Android build_number 5 --svgs /sdcard/revenge_of_the_skiabot/svgs --key arch arm64 compiler Clang configuration Debug cpu_or_gpu GPU cpu_or_gpu_value TegraX1 extra_config GN_Android model PixelC os Android --uninterestingHashesFile /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt --writePath /sdcard/revenge_of_the_skiabot/dm_out --nocpu --config 8888 gpu gpudft gpusrgb msaa4 esinstdit4 serialize-8888 tiles_rt-8888 pic-8888 esinst --src tests gm image colorImage svg --blacklist gpusrgb image _ _ _ test _ GrShape serialize-8888 gm _ bleed_image serialize-8888 gm _ c_gms serialize-8888 gm _ colortype serialize-8888 gm _ colortype_xfermodes serialize-8888 gm _ drawfilter serialize-8888 gm _ fontmgr_bounds_0.75_0 serialize-8888 gm _ fontmgr_bounds_1_-0.25 serialize-8888 gm _ fontmgr_bounds serialize-8888 gm _ fontmgr_match serialize-8888 gm _ fontmgr_iter serialize-8888 gm _ imagemasksubset serialize-8888 gm _ bitmapfilters serialize-8888 gm _ bitmapshaders serialize-8888 gm _ bleed serialize-8888 gm _ bleed_alpha_bmp serialize-8888 gm _ bleed_alpha_bmp_shader serialize-8888 gm _ convex_poly_clip serialize-8888 gm _ extractalpha serialize-8888 gm _ filterbitmap_checkerboard_32_32_g8 serialize-8888 gm _ filterbitmap_image_mandrill_64 serialize-8888 gm _ shadows serialize-8888 gm _ simpleaaclip_aaclip serialize-8888 gm _ composeshader_bitmap serialize-8888 gm _ scaled_tilemodes_npot serialize-8888 gm _ scaled_tilemodes serialize-8888 gm _ typefacerendering_pfaMac serialize-8888 gm _ parsedpaths serialize-8888 gm _ ImageGeneratorExternal_rect serialize-8888 gm _ ImageGeneratorExternal_shader serialize-8888 gm _ bleed_alpha_image serialize-8888 gm _ bleed_alpha_image_shader serialize-8888 gm _ verylargebitmap serialize-8888 gm _ verylarge_picture_image pic-8888 gm _ drawfilter pic-8888 gm _ image-cacherator-from-picture serialize-8888 gm _ image-cacherator-from-picture pic-8888 gm _ image-cacherator-from-raster serialize-8888 gm _ image-cacherator-from-raster pic-8888 gm _ image-cacherator-from-ctable serialize-8888 gm _ image-cacherator-from-ctable pic-8888 gm _ gamut serialize-8888 gm _ gamut _ image _ interlaced1.png _ image _ interlaced2.png _ image _ interlaced3.png _ image _ .arw _ image _ .cr2 _ image _ .dng _ image _ .nef _ image _ .nrw _ image _ .orf _ image _ .raf _ image _ .rw2 _ image _ .pef _ image _ .srw _ image _ .ARW _ image _ .CR2 _ image _ .DNG _ image _ .NEF _ image _ .NRW _ image _ .ORF _ image _ .RAF _ image _ .RW2 _ image _ .PEF _ image _ .SRW; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/dm.sh"
+ "[START_DIR]/tmp/dm.sh"
],
"name": "write dm.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/dm.sh",
+ "[START_DIR]/tmp/dm.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"/sdcard/revenge_of_the_skiabot/dm_out",
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "pull /sdcard/revenge_of_the_skiabot/dm_out [CUSTOM_[SWARM_OUT_DIR]]/dm"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "get uninteresting hashes",
"~followup_annotations": [
},
{
"cmd": [
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/dm",
+ "[START_DIR]/skimage/dm",
"--colorImages",
- "[SLAVE_BUILD]/skimage/colorspace",
+ "[START_DIR]/skimage/colorspace",
"--nameByHash",
"--properties",
"gitHash",
"build_number",
"5",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--key",
"arch",
"x86_64",
"os",
"Mac",
"--uninterestingHashesFile",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"--writePath",
"[CUSTOM_[SWARM_OUT_DIR]]/dm",
"--nocpu",
"_",
"blurcircles"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "dm"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "get uninteresting hashes",
"~followup_annotations": [
},
{
"cmd": [
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/dm",
+ "[START_DIR]/skimage/dm",
"--colorImages",
- "[SLAVE_BUILD]/skimage/colorspace",
+ "[START_DIR]/skimage/colorspace",
"--nameByHash",
"--properties",
"gitHash",
"build_number",
"5",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--key",
"arch",
"x86_64",
"os",
"Mac",
"--uninterestingHashesFile",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"--writePath",
"[CUSTOM_[SWARM_OUT_DIR]]/dm",
"--nogpu",
"_",
"gamut"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "dm"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "get uninteresting hashes",
"~followup_annotations": [
},
{
"cmd": [
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/dm",
+ "[START_DIR]/skimage/dm",
"--colorImages",
- "[SLAVE_BUILD]/skimage/colorspace",
+ "[START_DIR]/skimage/colorspace",
"--nameByHash",
"--properties",
"gitHash",
"build_number",
"5",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--key",
"arch",
"x86_64",
"os",
"Mac",
"--uninterestingHashesFile",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"--writePath",
"[CUSTOM_[SWARM_OUT_DIR]]/dm",
"--nocpu",
"_",
".SRW"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "dm"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "get uninteresting hashes",
"~followup_annotations": [
{
"cmd": [
"catchsegv",
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/dm",
+ "[START_DIR]/skimage/dm",
"--colorImages",
- "[SLAVE_BUILD]/skimage/colorspace",
+ "[START_DIR]/skimage/colorspace",
"--nameByHash",
"--properties",
"gitHash",
"build_number",
"5",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--key",
"arch",
"x86",
"os",
"Ubuntu",
"--uninterestingHashesFile",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"--writePath",
"[CUSTOM_[SWARM_OUT_DIR]]/dm",
"--nogpu",
"_",
"gamut"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "dm"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/dm",
+ "[START_DIR]/skimage/dm",
"--colorImages",
- "[SLAVE_BUILD]/skimage/colorspace",
+ "[START_DIR]/skimage/colorspace",
"--nameByHash",
"--properties",
"gitHash",
"build_number",
"5",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--key",
"arch",
"x86_64",
"_",
"gamut"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"ASAN_OPTIONS": "symbolize=1 detect_leaks=1",
"LSAN_OPTIONS": "symbolize=1 print_suppressions=1",
- "PATH": "%(PATH)s:[SLAVE_BUILD]/clang_linux/bin",
+ "PATH": "%(PATH)s:[START_DIR]/clang_linux/bin",
"UBSAN_OPTIONS": "symbolize=1 print_stacktrace=1"
},
"name": "dm"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/dm",
+ "[START_DIR]/skimage/dm",
"--colorImages",
- "[SLAVE_BUILD]/skimage/colorspace",
+ "[START_DIR]/skimage/colorspace",
"--nameByHash",
"--properties",
"gitHash",
"build_number",
"5",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--key",
"arch",
"x86_64",
"~Once",
"~Shared"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
- "LD_LIBRARY_PATH": "[SLAVE_BUILD]/clang_linux/msan",
- "PATH": "%(PATH)s:[SLAVE_BUILD]/clang_linux/bin"
+ "LD_LIBRARY_PATH": "[START_DIR]/clang_linux/msan",
+ "PATH": "%(PATH)s:[START_DIR]/clang_linux/bin"
},
"name": "dm"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "get uninteresting hashes",
"~followup_annotations": [
{
"cmd": [
"catchsegv",
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/dm",
+ "[START_DIR]/skimage/dm",
"--colorImages",
- "[SLAVE_BUILD]/skimage/colorspace",
+ "[START_DIR]/skimage/colorspace",
"--nameByHash",
"--properties",
"gitHash",
"build_number",
"5",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--key",
"arch",
"x86_64",
"os",
"Ubuntu",
"--uninterestingHashesFile",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"--writePath",
"[CUSTOM_[SWARM_OUT_DIR]]/dm",
"--nogpu",
"_",
"gamut"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "dm"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "get uninteresting hashes",
"~followup_annotations": [
{
"cmd": [
"catchsegv",
- "[SLAVE_BUILD]/out/Release/dm",
+ "[START_DIR]/out/Release/dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/dm",
+ "[START_DIR]/skimage/dm",
"--colorImages",
- "[SLAVE_BUILD]/skimage/colorspace",
+ "[START_DIR]/skimage/colorspace",
"--nameByHash",
"--properties",
"gitHash",
"build_number",
"5",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--key",
"arch",
"x86_64",
"os",
"Ubuntu",
"--uninterestingHashesFile",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"--writePath",
"[CUSTOM_[SWARM_OUT_DIR]]/dm",
"--nogpu",
"_",
"gamut"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "dm"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/out/Release/dm",
+ "[START_DIR]/out/Release/dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/dm",
+ "[START_DIR]/skimage/dm",
"--colorImages",
- "[SLAVE_BUILD]/skimage/colorspace",
+ "[START_DIR]/skimage/colorspace",
"--nameByHash",
"--properties",
"gitHash",
"build_number",
"5",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--key",
"arch",
"x86_64",
"~RGBA4444TextureTest",
"~RGB565TextureTest"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
- "PATH": "%(PATH)s:[SLAVE_BUILD]/clang_linux/bin"
+ "PATH": "%(PATH)s:[START_DIR]/clang_linux/bin"
},
"name": "dm"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"--track-origins=yes",
"--error-exitcode=1",
"--num-callers=40",
- "--suppressions=[SLAVE_BUILD]/skia/tools/valgrind.supp",
- "[SLAVE_BUILD]/out/Release/dm",
+ "--suppressions=[START_DIR]/skia/tools/valgrind.supp",
+ "[START_DIR]/out/Release/dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/dm",
+ "[START_DIR]/skimage/dm",
"--colorImages",
- "[SLAVE_BUILD]/skimage/colorspace",
+ "[START_DIR]/skimage/colorspace",
"--nameByHash",
"--properties",
"gitHash",
"build_number",
"5",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--key",
"arch",
"x86_64",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "dm"
},
"--track-origins=yes",
"--error-exitcode=1",
"--num-callers=40",
- "--suppressions=[SLAVE_BUILD]/skia/tools/valgrind.supp",
- "[SLAVE_BUILD]/out/Release/dm",
+ "--suppressions=[START_DIR]/skia/tools/valgrind.supp",
+ "[START_DIR]/out/Release/dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/dm",
+ "[START_DIR]/skimage/dm",
"--colorImages",
- "[SLAVE_BUILD]/skimage/colorspace",
+ "[START_DIR]/skimage/colorspace",
"--nameByHash",
"--properties",
"gitHash",
"build_number",
"5",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--key",
"arch",
"x86_64",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "dm --abandonGpuContext"
},
"--track-origins=yes",
"--error-exitcode=1",
"--num-callers=40",
- "--suppressions=[SLAVE_BUILD]/skia/tools/valgrind.supp",
- "[SLAVE_BUILD]/out/Release/dm",
+ "--suppressions=[START_DIR]/skia/tools/valgrind.supp",
+ "[START_DIR]/out/Release/dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/dm",
+ "[START_DIR]/skimage/dm",
"--colorImages",
- "[SLAVE_BUILD]/skimage/colorspace",
+ "[START_DIR]/skimage/colorspace",
"--nameByHash",
"--properties",
"gitHash",
"build_number",
"5",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--key",
"arch",
"x86_64",
"env": {
"BUILDTYPE": "Release",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "dm --preAbandonGpuContext"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skp\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skp\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SKP_VERSION"
+ "[START_DIR]\\tmp\\SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SK_IMAGE_VERSION"
+ "[START_DIR]\\tmp\\SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\svg\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\svg\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SVG_VERSION"
+ "[START_DIR]\\tmp\\SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]\\dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]\\skia\\infra\\bots\\.recipe_deps\\build\\scripts"
+ "PYTHONPATH": "[START_DIR]\\skia\\infra\\bots\\.recipe_deps\\build\\scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]\\tmp",
+ "[START_DIR]\\tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]\\tmp\\uninteresting_hashes.txt"
+ "[START_DIR]\\tmp\\uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]\\skia",
+ "cwd": "[START_DIR]\\skia",
"env": {
"BUILDTYPE": "Debug_x64",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]\\out"
+ "SKIA_OUT": "[START_DIR]\\out"
},
"name": "get uninteresting hashes",
"~followup_annotations": [
},
{
"cmd": [
- "[SLAVE_BUILD]\\out\\Debug_x64\\dm",
+ "[START_DIR]\\out\\Debug_x64\\dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]\\skia\\resources",
+ "[START_DIR]\\skia\\resources",
"--skps",
- "[SLAVE_BUILD]\\skp",
+ "[START_DIR]\\skp",
"--images",
- "[SLAVE_BUILD]\\skimage\\dm",
+ "[START_DIR]\\skimage\\dm",
"--colorImages",
- "[SLAVE_BUILD]\\skimage\\colorspace",
+ "[START_DIR]\\skimage\\colorspace",
"--nameByHash",
"--properties",
"gitHash",
"build_number",
"5",
"--svgs",
- "[SLAVE_BUILD]\\svg",
+ "[START_DIR]\\svg",
"--key",
"arch",
"x86_64",
"os",
"Win10",
"--uninterestingHashesFile",
- "[SLAVE_BUILD]\\tmp\\uninteresting_hashes.txt",
+ "[START_DIR]\\tmp\\uninteresting_hashes.txt",
"--writePath",
"[CUSTOM_[SWARM_OUT_DIR]]\\dm",
"--nocpu",
"_",
".SRW"
],
- "cwd": "[SLAVE_BUILD]\\skia",
+ "cwd": "[START_DIR]\\skia",
"name": "dm"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skp\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skp\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SKP_VERSION"
+ "[START_DIR]\\tmp\\SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SK_IMAGE_VERSION"
+ "[START_DIR]\\tmp\\SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\svg\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\svg\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SVG_VERSION"
+ "[START_DIR]\\tmp\\SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]\\dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]\\skia\\infra\\bots\\.recipe_deps\\build\\scripts"
+ "PYTHONPATH": "[START_DIR]\\skia\\infra\\bots\\.recipe_deps\\build\\scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]\\tmp",
+ "[START_DIR]\\tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]\\tmp\\uninteresting_hashes.txt"
+ "[START_DIR]\\tmp\\uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]\\skia",
+ "cwd": "[START_DIR]\\skia",
"env": {
"BUILDTYPE": "Release_x64",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]\\out"
+ "SKIA_OUT": "[START_DIR]\\out"
},
"name": "get uninteresting hashes",
"~followup_annotations": [
},
{
"cmd": [
- "[SLAVE_BUILD]\\out\\Release_x64\\dm",
+ "[START_DIR]\\out\\Release_x64\\dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]\\skia\\resources",
+ "[START_DIR]\\skia\\resources",
"--skps",
- "[SLAVE_BUILD]\\skp",
+ "[START_DIR]\\skp",
"--images",
- "[SLAVE_BUILD]\\skimage\\dm",
+ "[START_DIR]\\skimage\\dm",
"--colorImages",
- "[SLAVE_BUILD]\\skimage\\colorspace",
+ "[START_DIR]\\skimage\\colorspace",
"--nameByHash",
"--properties",
"gitHash",
"patch_storage",
"rietveld",
"--svgs",
- "[SLAVE_BUILD]\\svg",
+ "[START_DIR]\\svg",
"--key",
"arch",
"x86_64",
"os",
"Win8",
"--uninterestingHashesFile",
- "[SLAVE_BUILD]\\tmp\\uninteresting_hashes.txt",
+ "[START_DIR]\\tmp\\uninteresting_hashes.txt",
"--writePath",
"[CUSTOM_[SWARM_OUT_DIR]]\\dm",
"--nogpu",
"gamut",
"--noRAW_threading"
],
- "cwd": "[SLAVE_BUILD]\\skia",
+ "cwd": "[START_DIR]\\skia",
"name": "dm"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skp\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skp\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SKP_VERSION"
+ "[START_DIR]\\tmp\\SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SK_IMAGE_VERSION"
+ "[START_DIR]\\tmp\\SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\svg\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\svg\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SVG_VERSION"
+ "[START_DIR]\\tmp\\SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]\\dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]\\skia\\infra\\bots\\.recipe_deps\\build\\scripts"
+ "PYTHONPATH": "[START_DIR]\\skia\\infra\\bots\\.recipe_deps\\build\\scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]\\tmp",
+ "[START_DIR]\\tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]\\tmp\\uninteresting_hashes.txt"
+ "[START_DIR]\\tmp\\uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]\\skia",
+ "cwd": "[START_DIR]\\skia",
"env": {
"BUILDTYPE": "Debug_x64",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]\\out"
+ "SKIA_OUT": "[START_DIR]\\out"
},
"name": "get uninteresting hashes",
"~followup_annotations": [
},
{
"cmd": [
- "[SLAVE_BUILD]\\out\\Debug_x64\\dm",
+ "[START_DIR]\\out\\Debug_x64\\dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]\\skia\\resources",
+ "[START_DIR]\\skia\\resources",
"--skps",
- "[SLAVE_BUILD]\\skp",
+ "[START_DIR]\\skp",
"--images",
- "[SLAVE_BUILD]\\skimage\\dm",
+ "[START_DIR]\\skimage\\dm",
"--colorImages",
- "[SLAVE_BUILD]\\skimage\\colorspace",
+ "[START_DIR]\\skimage\\colorspace",
"--nameByHash",
"--properties",
"gitHash",
"build_number",
"5",
"--svgs",
- "[SLAVE_BUILD]\\svg",
+ "[START_DIR]\\svg",
"--key",
"arch",
"x86_64",
"os",
"Win8",
"--uninterestingHashesFile",
- "[SLAVE_BUILD]\\tmp\\uninteresting_hashes.txt",
+ "[START_DIR]\\tmp\\uninteresting_hashes.txt",
"--writePath",
"[CUSTOM_[SWARM_OUT_DIR]]\\dm",
"--nocpu",
"~GLPrograms",
"--noRAW_threading"
],
- "cwd": "[SLAVE_BUILD]\\skia",
+ "cwd": "[START_DIR]\\skia",
"name": "dm"
},
{
[
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_install"
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_install"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "install iOSShell"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_if_needed",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_if_needed",
+ "[START_DIR]/skia/resources",
"skiabot/skia_resources"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "push resources to skia_resources"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_cat_file",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_cat_file",
"skiabot/skia_tmp_dir/SKP_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "read SKP_VERSION",
"stdout": "/path/to/tmp/"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_tmp_dir/SKP_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rm skiabot/skia_tmp_dir/SKP_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_skp/skps"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rmdir skiabot/skia_skp/skps"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_mkdir",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_mkdir",
"skiabot/skia_skp/skps"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "mkdir skiabot/skia_skp/skps"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_if_needed",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_if_needed",
+ "[START_DIR]/skp",
"skiabot/skia_skp/skps"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "push skp to skps"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_file",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_file",
+ "[START_DIR]/tmp/SKP_VERSION",
"skiabot/skia_tmp_dir/SKP_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION"
+ "name": "push [START_DIR]/tmp/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_cat_file",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_cat_file",
"skiabot/skia_tmp_dir/SK_IMAGE_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "read SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_tmp_dir/SK_IMAGE_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rm skiabot/skia_tmp_dir/SK_IMAGE_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_images"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rmdir skiabot/skia_images"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_mkdir",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_mkdir",
"skiabot/skia_images"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "mkdir skiabot/skia_images"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_if_needed",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_if_needed",
+ "[START_DIR]/skimage",
"skiabot/skia_images"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "push skimage to skia_images"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_file",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_file",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"skiabot/skia_tmp_dir/SK_IMAGE_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_cat_file",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_cat_file",
"skiabot/skia_tmp_dir/SVG_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "read SVG_VERSION",
"stdout": "/path/to/tmp/"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_tmp_dir/SVG_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rm skiabot/skia_tmp_dir/SVG_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_svg/svgs"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rmdir skiabot/skia_svg/svgs"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_mkdir",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_mkdir",
"skiabot/skia_svg/svgs"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "mkdir skiabot/skia_svg/svgs"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_if_needed",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_if_needed",
+ "[START_DIR]/svg",
"skiabot/skia_svg/svgs"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "push svg to svgs"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_file",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_file",
+ "[START_DIR]/tmp/SVG_VERSION",
"skiabot/skia_tmp_dir/SVG_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION"
+ "name": "push [START_DIR]/tmp/SVG_VERSION"
},
{
"cmd": [
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_dm"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rmdir skiabot/skia_dm"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_mkdir",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_mkdir",
"skiabot/skia_dm"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "mkdir skiabot/skia_dm"
},
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "get uninteresting hashes",
"~followup_annotations": [
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_file",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_file",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"skiabot/skia_tmp_dir/uninteresting_hashes.txt"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
- "name": "push [SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "name": "push [START_DIR]/tmp/uninteresting_hashes.txt"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_run_skia",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_run_skia",
"--dm",
"--undefok",
"--resourcePath",
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "dm"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_pull_if_needed",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_pull_if_needed",
"skiabot/skia_dm",
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "pull skia_dm"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_restart"
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_restart"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "reboot"
},
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "wait for reboot"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skp\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skp\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SKP_VERSION"
+ "[START_DIR]\\tmp\\SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\skimage\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SK_IMAGE_VERSION"
+ "[START_DIR]\\tmp\\SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]\\skia\\infra\\bots\\assets\\svg\\VERSION",
+ "[START_DIR]\\skia\\infra\\bots\\assets\\svg\\VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]\\tmp\\SVG_VERSION"
+ "[START_DIR]\\tmp\\SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]\\dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]\\skia\\infra\\bots\\.recipe_deps\\build\\scripts"
+ "PYTHONPATH": "[START_DIR]\\skia\\infra\\bots\\.recipe_deps\\build\\scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]\\tmp",
+ "[START_DIR]\\tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]\\tmp\\uninteresting_hashes.txt"
+ "[START_DIR]\\tmp\\uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]\\skia",
+ "cwd": "[START_DIR]\\skia",
"env": {
"BUILDTYPE": "Release_x64",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]\\out"
+ "SKIA_OUT": "[START_DIR]\\out"
},
"name": "get uninteresting hashes",
"~followup_annotations": [
},
{
"cmd": [
- "[SLAVE_BUILD]\\out\\Release_x64\\dm",
+ "[START_DIR]\\out\\Release_x64\\dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]\\skia\\resources",
+ "[START_DIR]\\skia\\resources",
"--skps",
- "[SLAVE_BUILD]\\skp",
+ "[START_DIR]\\skp",
"--images",
- "[SLAVE_BUILD]\\skimage\\dm",
+ "[START_DIR]\\skimage\\dm",
"--colorImages",
- "[SLAVE_BUILD]\\skimage\\colorspace",
+ "[START_DIR]\\skimage\\colorspace",
"--nameByHash",
"--properties",
"gitHash",
"patch_storage",
"rietveld",
"--svgs",
- "[SLAVE_BUILD]\\svg",
+ "[START_DIR]\\svg",
"--key",
"arch",
"x86_64",
"os",
"Win8",
"--uninterestingHashesFile",
- "[SLAVE_BUILD]\\tmp\\uninteresting_hashes.txt",
+ "[START_DIR]\\tmp\\uninteresting_hashes.txt",
"--writePath",
"[CUSTOM_[SWARM_OUT_DIR]]\\dm",
"--nogpu",
"gamut",
"--noRAW_threading"
],
- "cwd": "[SLAVE_BUILD]\\skia",
+ "cwd": "[START_DIR]\\skia",
"name": "dm"
},
{
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "get uninteresting hashes",
"~followup_annotations": [
{
"cmd": [
"catchsegv",
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/dm",
+ "[START_DIR]/skimage/dm",
"--colorImages",
- "[SLAVE_BUILD]/skimage/colorspace",
+ "[START_DIR]/skimage/colorspace",
"--nameByHash",
"--properties",
"gitHash",
"build_number",
"6",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--key",
"arch",
"x86_64",
"os",
"Ubuntu",
"--uninterestingHashesFile",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"--writePath",
"[CUSTOM_[SWARM_OUT_DIR]]/dm",
"--nogpu",
"_",
"gamut"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "dm",
"~followup_annotations": [
"step returned non-zero exit code: 1",
"-p",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/resources"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"/sdcard/revenge_of_the_skiabot/resources"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skia/resources/* /sdcard/revenge_of_the_skiabot/resources",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SKP_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/skps"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/skps"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"/sdcard/revenge_of_the_skiabot/skps"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skp/* /sdcard/revenge_of_the_skiabot/skps",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skp/* /sdcard/revenge_of_the_skiabot/skps",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/tmp/SKP_VERSION",
"/sdcard/revenge_of_the_skiabot/SKP_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SKP_VERSION /sdcard/revenge_of_the_skiabot/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/images"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/images"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skimage",
"/sdcard/revenge_of_the_skiabot/images"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/skimage/* /sdcard/revenge_of_the_skiabot/images",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/skimage/* /sdcard/revenge_of_the_skiabot/images",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"/sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION /sdcard/revenge_of_the_skiabot/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"cat",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "read /sdcard/revenge_of_the_skiabot/SVG_VERSION",
"stdout": "/path/to/tmp/"
},
"-f",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"-rf",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/svgs"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/svgs"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nhost = sys.argv[1]\ndevice = sys.argv[2]\nfor d, _, fs in os.walk(host):\n p = os.path.relpath(d, host)\n if p != '.' and p.startswith('.'):\n continue\n for f in fs:\n print os.path.join(p,f)\n subprocess.check_call(['adb', 'push',\n os.path.realpath(os.path.join(host, p, f)),\n os.path.join(device, p, f)])\n",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"/sdcard/revenge_of_the_skiabot/svgs"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/svg/* /sdcard/revenge_of_the_skiabot/svgs",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/tmp/SVG_VERSION",
"/sdcard/revenge_of_the_skiabot/SVG_VERSION"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/SVG_VERSION /sdcard/revenge_of_the_skiabot/SVG_VERSION"
},
{
"cmd": [
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"-rf",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "rm /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"-p",
"/sdcard/revenge_of_the_skiabot/dm_out"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "mkdir /sdcard/revenge_of_the_skiabot/dm_out"
},
{
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "get uninteresting hashes",
"~followup_annotations": [
"step returned non-zero exit code: 1",
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"/sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
- "name": "push [SLAVE_BUILD]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
+ "cwd": "[START_DIR]/skia",
+ "name": "push [START_DIR]/tmp/uninteresting_hashes.txt /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt"
},
{
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm"
},
{
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"set -x; /data/local/tmp/dm --undefok --resourcePath /sdcard/revenge_of_the_skiabot/resources --skps /sdcard/revenge_of_the_skiabot/skps --images /sdcard/revenge_of_the_skiabot/images/dm --colorImages /sdcard/revenge_of_the_skiabot/images/colorspace --nameByHash --properties gitHash abc123 master client.skia builder Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-GN_Android build_number 6 --svgs /sdcard/revenge_of_the_skiabot/svgs --key arch arm compiler Clang configuration Debug cpu_or_gpu GPU cpu_or_gpu_value Tegra3 extra_config GN_Android model Nexus7 os Android --uninterestingHashesFile /sdcard/revenge_of_the_skiabot/uninteresting_hashes.txt --writePath /sdcard/revenge_of_the_skiabot/dm_out --nocpu --config 8888 gpu gpudft gpusrgb serialize-8888 tiles_rt-8888 pic-8888 --src tests gm image colorImage svg --blacklist gpusrgb image _ _ _ test _ GrShape serialize-8888 gm _ bleed_image serialize-8888 gm _ c_gms serialize-8888 gm _ colortype serialize-8888 gm _ colortype_xfermodes serialize-8888 gm _ drawfilter serialize-8888 gm _ fontmgr_bounds_0.75_0 serialize-8888 gm _ fontmgr_bounds_1_-0.25 serialize-8888 gm _ fontmgr_bounds serialize-8888 gm _ fontmgr_match serialize-8888 gm _ fontmgr_iter serialize-8888 gm _ imagemasksubset serialize-8888 gm _ bitmapfilters serialize-8888 gm _ bitmapshaders serialize-8888 gm _ bleed serialize-8888 gm _ bleed_alpha_bmp serialize-8888 gm _ bleed_alpha_bmp_shader serialize-8888 gm _ convex_poly_clip serialize-8888 gm _ extractalpha serialize-8888 gm _ filterbitmap_checkerboard_32_32_g8 serialize-8888 gm _ filterbitmap_image_mandrill_64 serialize-8888 gm _ shadows serialize-8888 gm _ simpleaaclip_aaclip serialize-8888 gm _ composeshader_bitmap serialize-8888 gm _ scaled_tilemodes_npot serialize-8888 gm _ scaled_tilemodes serialize-8888 gm _ typefacerendering_pfaMac serialize-8888 gm _ parsedpaths serialize-8888 gm _ ImageGeneratorExternal_rect serialize-8888 gm _ ImageGeneratorExternal_shader serialize-8888 gm _ bleed_alpha_image serialize-8888 gm _ bleed_alpha_image_shader serialize-8888 gm _ verylargebitmap serialize-8888 gm _ verylarge_picture_image pic-8888 gm _ drawfilter pic-8888 gm _ image-cacherator-from-picture serialize-8888 gm _ image-cacherator-from-picture pic-8888 gm _ image-cacherator-from-raster serialize-8888 gm _ image-cacherator-from-raster pic-8888 gm _ image-cacherator-from-ctable serialize-8888 gm _ image-cacherator-from-ctable pic-8888 gm _ gamut serialize-8888 gm _ gamut _ image _ interlaced1.png _ image _ interlaced2.png _ image _ interlaced3.png _ image _ .arw _ image _ .cr2 _ image _ .dng _ image _ .nef _ image _ .nrw _ image _ .orf _ image _ .raf _ image _ .rw2 _ image _ .pef _ image _ .srw _ image _ .ARW _ image _ .CR2 _ image _ .DNG _ image _ .NEF _ image _ .NRW _ image _ .ORF _ image _ .RAF _ image _ .RW2 _ image _ .PEF _ image _ .SRW; echo $? >/data/local/tmp/rc",
- "[SLAVE_BUILD]/tmp/dm.sh"
+ "[START_DIR]/tmp/dm.sh"
],
"name": "write dm.sh"
},
"cmd": [
"adb",
"push",
- "[SLAVE_BUILD]/tmp/dm.sh",
+ "[START_DIR]/tmp/dm.sh",
"/data/local/tmp/"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "push dm.sh"
},
{
"logcat",
"-c"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "clear log"
},
{
"/sdcard/revenge_of_the_skiabot/dm_out",
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "pull /sdcard/revenge_of_the_skiabot/dm_out [CUSTOM_[SWARM_OUT_DIR]]/dm"
},
{
"python",
"-u",
"\nimport os\nimport subprocess\nimport sys\nout = sys.argv[1]\nlog = subprocess.check_output(['adb', 'logcat', '-d'])\nfor line in log.split('\\n'):\n tokens = line.split()\n if len(tokens) == 11 and tokens[-7] == 'F' and tokens[-3] == 'pc':\n addr, path = tokens[-2:]\n local = os.path.join(out, os.path.basename(path))\n if os.path.exists(local):\n sym = subprocess.check_output(['addr2line', '-Cfpe', local, addr])\n line = line.replace(addr, addr + ' ' + sym.strip())\n print line\n",
- "[SLAVE_BUILD]/out/Debug"
+ "[START_DIR]/out/Debug"
],
"name": "dump log",
"~followup_annotations": [
"adb",
"kill-server"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "kill adb server"
},
{
[
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_install"
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_install"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "install iOSShell"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_if_needed",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_if_needed",
+ "[START_DIR]/skia/resources",
"skiabot/skia_resources"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "push resources to skia_resources"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_cat_file",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_cat_file",
"skiabot/skia_tmp_dir/SKP_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "read SKP_VERSION",
"stdout": "/path/to/tmp/",
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_tmp_dir/SKP_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rm skiabot/skia_tmp_dir/SKP_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_skp/skps"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rmdir skiabot/skia_skp/skps"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_mkdir",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_mkdir",
"skiabot/skia_skp/skps"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "mkdir skiabot/skia_skp/skps"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_if_needed",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_if_needed",
+ "[START_DIR]/skp",
"skiabot/skia_skp/skps"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "push skp to skps"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_file",
- "[SLAVE_BUILD]/tmp/SKP_VERSION",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_file",
+ "[START_DIR]/tmp/SKP_VERSION",
"skiabot/skia_tmp_dir/SKP_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
- "name": "push [SLAVE_BUILD]/tmp/SKP_VERSION"
+ "name": "push [START_DIR]/tmp/SKP_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_cat_file",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_cat_file",
"skiabot/skia_tmp_dir/SK_IMAGE_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "read SK_IMAGE_VERSION",
"stdout": "/path/to/tmp/"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_tmp_dir/SK_IMAGE_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rm skiabot/skia_tmp_dir/SK_IMAGE_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_images"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rmdir skiabot/skia_images"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_mkdir",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_mkdir",
"skiabot/skia_images"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "mkdir skiabot/skia_images"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_if_needed",
- "[SLAVE_BUILD]/skimage",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_if_needed",
+ "[START_DIR]/skimage",
"skiabot/skia_images"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "push skimage to skia_images"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_file",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_file",
+ "[START_DIR]/tmp/SK_IMAGE_VERSION",
"skiabot/skia_tmp_dir/SK_IMAGE_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
- "name": "push [SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "name": "push [START_DIR]/tmp/SK_IMAGE_VERSION"
},
{
"cmd": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_cat_file",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_cat_file",
"skiabot/skia_tmp_dir/SVG_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "read SVG_VERSION",
"stdout": "/path/to/tmp/"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_tmp_dir/SVG_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rm skiabot/skia_tmp_dir/SVG_VERSION"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_svg/svgs"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rmdir skiabot/skia_svg/svgs"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_mkdir",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_mkdir",
"skiabot/skia_svg/svgs"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "mkdir skiabot/skia_svg/svgs"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_if_needed",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_if_needed",
+ "[START_DIR]/svg",
"skiabot/skia_svg/svgs"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "push svg to svgs"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_file",
- "[SLAVE_BUILD]/tmp/SVG_VERSION",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_file",
+ "[START_DIR]/tmp/SVG_VERSION",
"skiabot/skia_tmp_dir/SVG_VERSION"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
- "name": "push [SLAVE_BUILD]/tmp/SVG_VERSION"
+ "name": "push [START_DIR]/tmp/SVG_VERSION"
},
{
"cmd": [
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_rm",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_rm",
"skiabot/skia_dm"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "rmdir skiabot/skia_dm"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_mkdir",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_mkdir",
"skiabot/skia_dm"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "mkdir skiabot/skia_dm"
},
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "get uninteresting hashes",
"~followup_annotations": [
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_push_file",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_push_file",
+ "[START_DIR]/tmp/uninteresting_hashes.txt",
"skiabot/skia_tmp_dir/uninteresting_hashes.txt"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
- "name": "push [SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "name": "push [START_DIR]/tmp/uninteresting_hashes.txt"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_run_skia",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_run_skia",
"--dm",
"--undefok",
"--resourcePath",
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "dm"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_pull_if_needed",
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_pull_if_needed",
"skiabot/skia_dm",
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "pull skia_dm"
},
{
"cmd": [
- "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_restart"
+ "[START_DIR]/skia/platform_tools/ios/bin/ios_restart"
],
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "reboot"
},
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out",
- "XCODEBUILD": "[SLAVE_BUILD]/xcodebuild"
+ "SKIA_OUT": "[START_DIR]/out",
+ "XCODEBUILD": "[START_DIR]/xcodebuild"
},
"name": "wait for reboot"
},
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "get uninteresting hashes",
"~followup_annotations": [
{
"cmd": [
"catchsegv",
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/dm",
+ "[START_DIR]/skimage/dm",
"--colorImages",
- "[SLAVE_BUILD]/skimage/colorspace",
+ "[START_DIR]/skimage/colorspace",
"--nameByHash",
"--properties",
"gitHash",
"swarming_task_id",
"123456",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--key",
"arch",
"x86",
"_",
"gamut"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "dm"
},
{
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/tmp",
+ "[START_DIR]/tmp",
"511"
],
"name": "makedirs tmp_dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SKP VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SKP_VERSION"
+ "[START_DIR]/tmp/SKP_VERSION"
],
"name": "write SKP_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded skimage VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION"
+ "[START_DIR]/tmp/SK_IMAGE_VERSION"
],
"name": "write SK_IMAGE_VERSION"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "Get downloaded SVG VERSION"
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"42",
- "[SLAVE_BUILD]/tmp/SVG_VERSION"
+ "[START_DIR]/tmp/SVG_VERSION"
],
"name": "write SVG_VERSION"
},
"[CUSTOM_[SWARM_OUT_DIR]]/dm"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree dm",
"~followup_annotations": [
"python",
"-u",
"\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n",
- "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
+ "[START_DIR]/tmp/uninteresting_hashes.txt"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"env": {
"BUILDTYPE": "Debug",
"CHROME_HEADLESS": "1",
- "SKIA_OUT": "[SLAVE_BUILD]/out"
+ "SKIA_OUT": "[START_DIR]/out"
},
"name": "get uninteresting hashes",
"~followup_annotations": [
{
"cmd": [
"catchsegv",
- "[SLAVE_BUILD]/out/Debug/dm",
+ "[START_DIR]/out/Debug/dm",
"--undefok",
"--resourcePath",
- "[SLAVE_BUILD]/skia/resources",
+ "[START_DIR]/skia/resources",
"--skps",
- "[SLAVE_BUILD]/skp",
+ "[START_DIR]/skp",
"--images",
- "[SLAVE_BUILD]/skimage/dm",
+ "[START_DIR]/skimage/dm",
"--colorImages",
- "[SLAVE_BUILD]/skimage/colorspace",
+ "[START_DIR]/skimage/colorspace",
"--nameByHash",
"--properties",
"gitHash",
"patch_storage",
"gerrit",
"--svgs",
- "[SLAVE_BUILD]/svg",
+ "[START_DIR]/svg",
"--key",
"arch",
"x86",
"_",
"gamut"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "dm"
},
{
path_config='kitchen',
swarm_out_dir='[SWARM_OUT_DIR]') +
api.path.exists(
- api.path['slave_build'].join('skia'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia'),
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skimage', 'VERSION'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skp', 'VERSION'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'svg', 'VERSION'),
- api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
+ api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
)
)
if 'Trybot' in builder:
path_config='kitchen',
swarm_out_dir='[SWARM_OUT_DIR]') +
api.path.exists(
- api.path['slave_build'].join('skia'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia'),
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skimage', 'VERSION'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skp', 'VERSION'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'svg', 'VERSION'),
- api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
+ api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
) +
api.step_data('dm', retcode=1)
)
path_config='kitchen',
swarm_out_dir='[SWARM_OUT_DIR]') +
api.path.exists(
- api.path['slave_build'].join('skia'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia'),
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skimage', 'VERSION'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skp', 'VERSION'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'svg', 'VERSION'),
- api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
+ api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
) +
api.step_data('get uninteresting hashes', retcode=1)
)
path_config='kitchen',
swarm_out_dir='[SWARM_OUT_DIR]') +
api.path.exists(
- api.path['slave_build'].join('skia'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia'),
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skimage', 'VERSION'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skp', 'VERSION'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'svg', 'VERSION'),
- api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
+ api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
) +
api.step_data('read SKP_VERSION', retcode=1)
)
patchset=1,
issue=2147533002L) +
api.path.exists(
- api.path['slave_build'].join('skia'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia'),
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skimage', 'VERSION'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'skp', 'VERSION'),
- api.path['slave_build'].join('skia', 'infra', 'bots', 'assets',
+ api.path['start_dir'].join('skia', 'infra', 'bots', 'assets',
'svg', 'VERSION'),
- api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt')
+ api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt')
) +
api.platform('win', 64)
)
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/android_ndk_darwin/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/android_ndk_darwin/VERSION",
"/path/to/tmp/"
],
"name": "read android_ndk_darwin VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Mac\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Mac\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Mac\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Mac\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/android_ndk_linux/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/android_ndk_linux/VERSION",
"/path/to/tmp/"
],
"name": "read android_ndk_linux VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/win_toolchain/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/win_toolchain/VERSION",
"/path/to/tmp/"
],
"name": "read win_toolchain VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/win_vulkan_sdk/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/win_vulkan_sdk/VERSION",
"/path/to/tmp/"
],
"name": "read win_vulkan_sdk VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Windows\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Windows\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/win_toolchain/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/win_toolchain/VERSION",
"/path/to/tmp/"
],
"name": "read win_toolchain VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Windows\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Windows\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-RecreateSKPs_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/RecreateSKPs_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-RecreateSKPs_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/RecreateSKPs_skia.isolated.gen.json"
],
"name": "Write RecreateSKPs_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/RecreateSKPs_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/RecreateSKPs_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/presubmit_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-presubmit_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/presubmit_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/presubmit_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-presubmit_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/presubmit_skia.isolated.gen.json"
],
"name": "Write presubmit_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/presubmit_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/presubmit_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/go/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/go/VERSION",
"/path/to/tmp/"
],
"name": "read go VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/housekeeper_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-housekeeper_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/housekeeper_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/housekeeper_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-housekeeper_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/housekeeper_skia.isolated.gen.json"
],
"name": "Write housekeeper_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/housekeeper_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/housekeeper_skia.isolated.gen.json"
],
"name": "isolate tests (2)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-housekeeper_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-housekeeper_skia.isolated",
"abc123"
],
"name": "add_isolated_input",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-housekeeper_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-housekeeper_skia.isolated"
],
"name": "upload new .isolated file for housekeeper_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/infra_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-infra_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/infra_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/infra_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-infra_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/infra_skia.isolated.gen.json"
],
"name": "Write infra_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/infra_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/infra_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "read skp VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "read skimage VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "read svg VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/perf_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-perf_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/perf_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/perf_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-perf_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/perf_skia.isolated.gen.json"
],
"name": "Write perf_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/perf_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/perf_skia.isolated.gen.json"
],
"name": "isolate tests (2)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-perf_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-perf_skia.isolated",
"abc123"
],
"name": "add_isolated_input",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-perf_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-perf_skia.isolated"
],
"name": "upload new .isolated file for perf_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/upload_nano_results.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_nano_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_nano_results_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/upload_nano_results.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-upload_nano_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/upload_nano_results_skia.isolated.gen.json"
],
"name": "Write upload_nano_results_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_nano_results_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/upload_nano_results_skia.isolated.gen.json"
],
"name": "isolate tests (3)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_nano_results_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_nano_results_skia.isolated",
"abc123"
],
"name": "add_isolated_input (2)",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_nano_results_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_nano_results_skia.isolated"
],
"name": "upload new .isolated file for upload_nano_results_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/ct_skps_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-ct_skps_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/ct_skps_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/ct_skps_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-ct_skps_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/ct_skps_skia.isolated.gen.json"
],
"name": "Write ct_skps_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/ct_skps_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/ct_skps_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "read skp VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "read skimage VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "read svg VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/perf_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-perf_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/perf_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/perf_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-perf_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/perf_skia.isolated.gen.json"
],
"name": "Write perf_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/perf_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/perf_skia.isolated.gen.json"
],
"name": "isolate tests (2)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-perf_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-perf_skia.isolated",
"abc123"
],
"name": "add_isolated_input",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-perf_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-perf_skia.isolated"
],
"name": "upload new .isolated file for perf_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/android_ndk_linux/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/android_ndk_linux/VERSION",
"/path/to/tmp/"
],
"name": "read android_ndk_linux VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "read skp VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "read skimage VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "read svg VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Android\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Android\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "Write test_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "isolate tests (2)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated",
"abc123"
],
"name": "add_isolated_input",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated"
],
"name": "upload new .isolated file for test_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "Write upload_dm_results_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "isolate tests (3)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
"abc123"
],
"name": "add_isolated_input (2)",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
],
"name": "upload new .isolated file for upload_dm_results_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/android_ndk_linux/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/android_ndk_linux/VERSION",
"/path/to/tmp/"
],
"name": "read android_ndk_linux VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "read skp VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "read skimage VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "read svg VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Android\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Android\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "Write test_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "isolate tests (2)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated",
"abc123"
],
"name": "add_isolated_input",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated"
],
"name": "upload new .isolated file for test_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "Write upload_dm_results_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "isolate tests (3)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
"abc123"
],
"name": "add_isolated_input (2)",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
],
"name": "upload new .isolated file for upload_dm_results_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/android_ndk_linux/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/android_ndk_linux/VERSION",
"/path/to/tmp/"
],
"name": "read android_ndk_linux VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "read skp VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "read skimage VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "read svg VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Android\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Android\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "Write test_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "isolate tests (2)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated",
"abc123"
],
"name": "add_isolated_input",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated"
],
"name": "upload new .isolated file for test_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "Write upload_dm_results_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "isolate tests (3)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
"abc123"
],
"name": "add_isolated_input (2)",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
],
"name": "upload new .isolated file for upload_dm_results_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Mac\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Mac\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "read skp VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "read skimage VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "read svg VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Mac\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Mac\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "Write test_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "isolate tests (2)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated",
"abc123"
],
"name": "add_isolated_input",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated"
],
"name": "upload new .isolated file for test_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "Write upload_dm_results_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "isolate tests (3)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
"abc123"
],
"name": "add_isolated_input (2)",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
],
"name": "upload new .isolated file for upload_dm_results_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "read skp VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "read skimage VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "read svg VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/coverage_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/coverage_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "Write test_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/clang_linux/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/clang_linux/VERSION",
"/path/to/tmp/"
],
"name": "read clang_linux VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "read skp VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "read skimage VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "read svg VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/clang_linux/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/clang_linux/VERSION",
"/path/to/tmp/"
],
"name": "read clang_linux VERSION (2)"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "Write test_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "isolate tests (2)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated",
"abc123"
],
"name": "add_isolated_input",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated"
],
"name": "upload new .isolated file for test_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "read skp VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "read skimage VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "read svg VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "Write test_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "isolate tests (2)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated",
"abc123"
],
"name": "add_isolated_input",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated"
],
"name": "upload new .isolated file for test_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "Write upload_dm_results_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "isolate tests (3)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
"abc123"
],
"name": "add_isolated_input (2)",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
],
"name": "upload new .isolated file for upload_dm_results_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "read skp VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "read skimage VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "read svg VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "Write test_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "isolate tests (2)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated",
"abc123"
],
"name": "add_isolated_input",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated"
],
"name": "upload new .isolated file for test_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "Write upload_dm_results_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "isolate tests (3)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
"abc123"
],
"name": "add_isolated_input (2)",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
],
"name": "upload new .isolated file for upload_dm_results_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "read skp VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "read skimage VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "read svg VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "Write test_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "isolate tests (2)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated",
"abc123"
],
"name": "add_isolated_input",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated"
],
"name": "upload new .isolated file for test_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/win_toolchain/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/win_toolchain/VERSION",
"/path/to/tmp/"
],
"name": "read win_toolchain VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Windows\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Windows\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "read skp VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "read skimage VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "read svg VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Windows\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Windows\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "Write test_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "isolate tests (2)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated",
"abc123"
],
"name": "add_isolated_input",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated"
],
"name": "upload new .isolated file for test_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "Write upload_dm_results_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "isolate tests (3)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
"abc123"
],
"name": "add_isolated_input (2)",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
],
"name": "upload new .isolated file for upload_dm_results_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/win_toolchain/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/win_toolchain/VERSION",
"/path/to/tmp/"
],
"name": "read win_toolchain VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Windows\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Windows\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "read skp VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "read skimage VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "read svg VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Windows-2008ServerR2-SP1\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Windows-2008ServerR2-SP1\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "Write test_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "isolate tests (2)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated",
"abc123"
],
"name": "add_isolated_input",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated"
],
"name": "upload new .isolated file for test_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "Write upload_dm_results_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "isolate tests (3)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
"abc123"
],
"name": "add_isolated_input (2)",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
],
"name": "upload new .isolated file for upload_dm_results_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Mac\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Mac\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "read skp VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "read skimage VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "read svg VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"iOS-9.3.1\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"iOS-9.3.1\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "Write test_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "isolate tests (2)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated",
"abc123"
],
"name": "add_isolated_input",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated"
],
"name": "upload new .isolated file for test_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "Write upload_dm_results_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "isolate tests (3)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
"abc123"
],
"name": "add_isolated_input (2)",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
],
"name": "upload new .isolated file for upload_dm_results_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "git rev-parse",
"stdout": "/path/to/tmp/"
},
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
"",
- "[SLAVE_BUILD]/.gclient"
+ "[START_DIR]/.gclient"
],
"name": "write .gclient"
},
"-u",
"import os\nfor r, _, files in os.walk(os.getcwd()):\n for fname in files:\n f = os.path.join(r, fname)\n if os.path.isfile(f):\n if os.access(f, os.X_OK):\n os.chmod(f, 0755)\n else:\n os.chmod(f, 0644)\n"
],
- "cwd": "[SLAVE_BUILD]/skia",
+ "cwd": "[START_DIR]/skia",
"name": "fix filemodes",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@import os@@@",
"-u",
"RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
"--path",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"--url",
"https://chromium.googlesource.com/external/swarming.client.git"
],
"origin",
"master"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
},
"-f",
"FETCH_HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git checkout (swarming_client)"
},
{
"rev-parse",
"HEAD"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "read revision",
"stdout": "/path/to/tmp/",
"~followup_annotations": [
"-d",
"-x"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "git clean (swarming_client)"
},
{
"submodule",
"sync"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule sync (swarming_client)"
},
{
"--init",
"--recursive"
],
- "cwd": "[SLAVE_BUILD]/swarming.client",
+ "cwd": "[START_DIR]/swarming.client",
"name": "submodule update (swarming_client)"
},
{
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"--version"
],
"name": "swarming.py --version",
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/linux64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/linux64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/mac64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/mac64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"--bucket",
"chromium-luci",
"-d",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go/win64"
+ "[START_DIR]/skia/infra/bots/tools/luci-go/win64"
],
"env": {
"PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
"python",
"-u",
"\nimport os, sys\nfrom common import chromium_utils # Error? See https://crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n",
- "[SLAVE_BUILD]/luci-go"
+ "[START_DIR]/luci-go"
],
"env": {
- "PYTHONPATH": "[SLAVE_BUILD]/skia/infra/bots/.recipe_deps/build/scripts"
+ "PYTHONPATH": "[START_DIR]/skia/infra/bots/.recipe_deps/build/scripts"
},
"name": "rmtree luci-go",
"~followup_annotations": [
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], symlinks=bool(sys.argv[3]))\n",
- "[SLAVE_BUILD]/skia/infra/bots/tools/luci-go",
- "[SLAVE_BUILD]/luci-go",
+ "[START_DIR]/skia/infra/bots/tools/luci-go",
+ "[START_DIR]/luci-go",
"0"
],
"name": "Copy Go binary"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "Write compile_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/compile_skia.isolated.gen.json"
],
"name": "isolate tests",
"~followup_annotations": [
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skp/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
"/path/to/tmp/"
],
"name": "read skp VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/skimage/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
"/path/to/tmp/"
],
"name": "read skimage VERSION"
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[SLAVE_BUILD]/skia/infra/bots/assets/svg/VERSION",
+ "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
"/path/to/tmp/"
],
"name": "read svg VERSION"
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (2)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Ubuntu\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "Write test_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/test_skia.isolated.gen.json"
],
"name": "isolate tests (2)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated",
"abc123"
],
"name": "add_isolated_input",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-test_skia.isolated"
],
"name": "upload new .isolated file for test_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
"python",
"-u",
"\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",
- "[SLAVE_BUILD]/swarming_temp_dir",
+ "[START_DIR]/swarming_temp_dir",
"511"
],
"name": "makedirs swarming tmp dir (3)",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[SLAVE_BUILD]\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"version\": 1\n}",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "{\n \"args\": [\n \"--isolate\", \n \"[START_DIR]/skia/infra/bots/upload_dm_results.isolate\", \n \"--isolated\", \n \"[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated\", \n \"--config-variable\", \n \"OS\", \n \"Linux\", \n \"--blacklist\", \n \".git\", \n \"--blacklist\", \n \"out\", \n \"--blacklist\", \n \"*.pyc\", \n \"--blacklist\", \n \".recipe_deps\", \n \"--extra-variable\", \n \"WORKDIR\", \n \"[START_DIR]\"\n ], \n \"dir\": \"[START_DIR]\", \n \"version\": 1\n}",
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "Write upload_dm_results_skia.isolated.gen.json"
},
"python",
"-u",
"RECIPE_MODULE[build::isolate]/resources/isolate.py",
- "[SLAVE_BUILD]/swarming.client",
+ "[START_DIR]/swarming.client",
"batcharchive",
"--dump-json",
"/path/to/tmp/json",
"--isolate-server",
"https://isolateserver.appspot.com",
"--verbose",
- "[SLAVE_BUILD]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
+ "[START_DIR]/swarming_temp_dir/upload_dm_results_skia.isolated.gen.json"
],
"name": "isolate tests (3)",
"~followup_annotations": [
"python",
"-u",
"\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = json.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated",
"abc123"
],
"name": "add_isolated_input (2)",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/isolateserver.py",
+ "[START_DIR]/swarming.client/isolateserver.py",
"archive",
"--isolate-server",
"https://isolateserver.appspot.com",
- "[SLAVE_BUILD]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
+ "[START_DIR]/swarming_temp_dir/skia-task-upload_dm_results_skia.isolated"
],
"name": "upload new .isolated file for upload_dm_results_skia",
"stdout": "/path/to/tmp/"
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"trigger",
"--swarming",
"https://chromium-swarm.appspot.com",
"cmd": [
"python",
"-u",
- "[SLAVE_BUILD]/swarming.client/swarming.py",
+ "[START_DIR]/swarming.client/swarming.py",
"collect",
"--swarming",
"https://chromium-swarm.appspot.com",
for k, v in properties.iteritems():
extra_args.append('%s=%s' % (k, v))
- isolate_base_dir = api.path['slave_build']
+ isolate_base_dir = api.path['start_dir']
dimensions = dimensions or swarm_dimensions(builder_cfg)
isolate_blacklist = ['.git', 'out', '*.pyc', '.recipe_deps']
isolate_vars = {
- 'WORKDIR': api.path['slave_build'],
+ 'WORKDIR': api.path['start_dir'],
}
isolate_file = isolate_file or '%s_skia.isolate' % task_name
"""Run the steps to obtain a checkout of Skia."""
# In this case, we're already running inside a checkout of Skia, so just
# report the currently-checked-out commit.
- checkout_path = api.path['slave_build'].join('skia')
+ checkout_path = api.path['start_dir'].join('skia')
got_revision = api.git(
'rev-parse', 'HEAD', cwd=checkout_path,
stdout=api.raw_io.output(),
api.path['checkout'] = checkout_path
# Write a fake .gclient file if none exists. This is required by .isolates.
- dot_gclient = api.path['slave_build'].join('.gclient')
+ dot_gclient = api.path['start_dir'].join('.gclient')
if not api.path.exists(dot_gclient):
api.run.writefile(dot_gclient, '')
revision='abc123')
)
paths = [
- api.path['slave_build'].join('skia'),
- api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt'),
+ api.path['start_dir'].join('skia'),
+ api.path['start_dir'].join('tmp', 'uninteresting_hashes.txt'),
]
if 'Trybot' in builder:
test += api.properties(issue=500,
'upload new .isolated file for housekeeper_skia',
stdout=api.raw_io.output('def456 XYZ.isolated'))
if 'Win' in builder:
- paths.append(api.path['slave_build'].join(
+ paths.append(api.path['start_dir'].join(
'skia', 'infra', 'bots', 'assets', 'win_toolchain', 'VERSION'))
- paths.append(api.path['slave_build'].join(
+ paths.append(api.path['start_dir'].join(
'skia', 'infra', 'bots', 'assets', 'win_vulkan_sdk', 'VERSION'))
- paths.append(api.path['slave_build'].join(
+ paths.append(api.path['start_dir'].join(
'skia', 'infra', 'bots', 'assets', 'skimage', 'VERSION'))
- paths.append(api.path['slave_build'].join(
+ paths.append(api.path['start_dir'].join(
'skia', 'infra', 'bots', 'assets', 'skp', 'VERSION'))
- paths.append(api.path['slave_build'].join(
+ paths.append(api.path['start_dir'].join(
'skia', 'infra', 'bots', 'assets', 'svg', 'VERSION'))
test += api.path.exists(*paths)
"python",
"-u",
"\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",
- "[CWD]/tmp_upload",
+ "[START_DIR]/tmp_upload",
"511"
],
"name": "makedirs tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[CWD]/dm/dm.json",
- "[CWD]/tmp_upload"
+ "[START_DIR]/dm/dm.json",
+ "[START_DIR]/tmp_upload"
],
"name": "copy dm.json"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[CWD]/dm/verbose.log",
- "[CWD]/tmp_upload"
+ "[START_DIR]/dm/verbose.log",
+ "[START_DIR]/tmp_upload"
],
"name": "copy verbose.log"
},
"python",
"-u",
"\nimport os\nimport sys\nos.remove(sys.argv[1])\n",
- "[CWD]/dm/dm.json"
+ "[START_DIR]/dm/dm.json"
],
"name": "rm old dm.json",
"~followup_annotations": [
"python",
"-u",
"\nimport os\nimport sys\nos.remove(sys.argv[1])\n",
- "[CWD]/dm/verbose.log"
+ "[START_DIR]/dm/verbose.log"
],
"name": "rm old verbose.log",
"~followup_annotations": [
"-u",
"\nimport glob\nimport sys\nwith open(sys.argv[1], 'w') as f:\n f.write('\\n'.join(glob.glob(sys.argv[2])))\n",
"/path/to/tmp/",
- "[CWD]/dm/*"
+ "[START_DIR]/dm/*"
],
"name": "find images"
},
"cmd": [
"gsutil",
"cp",
- "[CWD]/dm/*",
+ "[START_DIR]/dm/*",
"gs://skia-infra-gm/dm-images-v1"
],
"name": "upload images",
"cmd": [
"gsutil",
"cp",
- "[CWD]/dm/*",
+ "[START_DIR]/dm/*",
"gs://skia-infra-gm/dm-images-v1"
],
"name": "upload images (attempt 2)",
"cmd": [
"gsutil",
"cp",
- "[CWD]/dm/*",
+ "[START_DIR]/dm/*",
"gs://skia-infra-gm/dm-images-v1"
],
"name": "upload images (attempt 3)",
"cmd": [
"gsutil",
"cp",
- "[CWD]/dm/*",
+ "[START_DIR]/dm/*",
"gs://skia-infra-gm/dm-images-v1"
],
"name": "upload images (attempt 4)",
"cmd": [
"gsutil",
"cp",
- "[CWD]/dm/*",
+ "[START_DIR]/dm/*",
"gs://skia-infra-gm/dm-images-v1"
],
"name": "upload images (attempt 5)",
"python",
"-u",
"\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",
- "[CWD]/tmp_upload",
+ "[START_DIR]/tmp_upload",
"511"
],
"name": "makedirs tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[CWD]/dm/dm.json",
- "[CWD]/tmp_upload"
+ "[START_DIR]/dm/dm.json",
+ "[START_DIR]/tmp_upload"
],
"name": "copy dm.json"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[CWD]/dm/verbose.log",
- "[CWD]/tmp_upload"
+ "[START_DIR]/dm/verbose.log",
+ "[START_DIR]/tmp_upload"
],
"name": "copy verbose.log"
},
"python",
"-u",
"\nimport os\nimport sys\nos.remove(sys.argv[1])\n",
- "[CWD]/dm/dm.json"
+ "[START_DIR]/dm/dm.json"
],
"name": "rm old dm.json",
"~followup_annotations": [
"python",
"-u",
"\nimport os\nimport sys\nos.remove(sys.argv[1])\n",
- "[CWD]/dm/verbose.log"
+ "[START_DIR]/dm/verbose.log"
],
"name": "rm old verbose.log",
"~followup_annotations": [
"-u",
"\nimport glob\nimport sys\nwith open(sys.argv[1], 'w') as f:\n f.write('\\n'.join(glob.glob(sys.argv[2])))\n",
"/path/to/tmp/",
- "[CWD]/dm/*"
+ "[START_DIR]/dm/*"
],
"name": "find images"
},
"cmd": [
"gsutil",
"cp",
- "[CWD]/dm/*",
+ "[START_DIR]/dm/*",
"gs://skia-infra-gm/dm-images-v1"
],
"name": "upload images",
"cmd": [
"gsutil",
"cp",
- "[CWD]/dm/*",
+ "[START_DIR]/dm/*",
"gs://skia-infra-gm/dm-images-v1"
],
"name": "upload images (attempt 2)"
"cp",
"-z",
"json,log",
- "[CWD]/tmp_upload/*",
+ "[START_DIR]/tmp_upload/*",
"gs://skia-infra-gm/dm-json-v1/2012/05/14/12/abc123/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug/1337000001"
],
"name": "upload JSON and logs"
"python",
"-u",
"\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",
- "[CWD]/tmp_upload",
+ "[START_DIR]/tmp_upload",
"511"
],
"name": "makedirs tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[CWD]/dm/dm.json",
- "[CWD]/tmp_upload"
+ "[START_DIR]/dm/dm.json",
+ "[START_DIR]/tmp_upload"
],
"name": "copy dm.json"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[CWD]/dm/verbose.log",
- "[CWD]/tmp_upload"
+ "[START_DIR]/dm/verbose.log",
+ "[START_DIR]/tmp_upload"
],
"name": "copy verbose.log"
},
"python",
"-u",
"\nimport os\nimport sys\nos.remove(sys.argv[1])\n",
- "[CWD]/dm/dm.json"
+ "[START_DIR]/dm/dm.json"
],
"name": "rm old dm.json",
"~followup_annotations": [
"python",
"-u",
"\nimport os\nimport sys\nos.remove(sys.argv[1])\n",
- "[CWD]/dm/verbose.log"
+ "[START_DIR]/dm/verbose.log"
],
"name": "rm old verbose.log",
"~followup_annotations": [
"-u",
"\nimport glob\nimport sys\nwith open(sys.argv[1], 'w') as f:\n f.write('\\n'.join(glob.glob(sys.argv[2])))\n",
"/path/to/tmp/",
- "[CWD]/dm/*"
+ "[START_DIR]/dm/*"
],
"name": "find images"
},
"cmd": [
"gsutil",
"cp",
- "[CWD]/dm/*",
+ "[START_DIR]/dm/*",
"gs://skia-infra-gm/dm-images-v1"
],
"name": "upload images"
"cp",
"-z",
"json,log",
- "[CWD]/tmp_upload/*",
+ "[START_DIR]/tmp_upload/*",
"gs://skia-infra-gm/dm-json-v1/2012/05/14/12/abc123/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug/1337000001"
],
"name": "upload JSON and logs"
"python",
"-u",
"\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",
- "[CWD]/tmp_upload",
+ "[START_DIR]/tmp_upload",
"511"
],
"name": "makedirs tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[CWD]/dm/dm.json",
- "[CWD]/tmp_upload"
+ "[START_DIR]/dm/dm.json",
+ "[START_DIR]/tmp_upload"
],
"name": "copy dm.json"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[CWD]/dm/verbose.log",
- "[CWD]/tmp_upload"
+ "[START_DIR]/dm/verbose.log",
+ "[START_DIR]/tmp_upload"
],
"name": "copy verbose.log"
},
"python",
"-u",
"\nimport os\nimport sys\nos.remove(sys.argv[1])\n",
- "[CWD]/dm/dm.json"
+ "[START_DIR]/dm/dm.json"
],
"name": "rm old dm.json",
"~followup_annotations": [
"python",
"-u",
"\nimport os\nimport sys\nos.remove(sys.argv[1])\n",
- "[CWD]/dm/verbose.log"
+ "[START_DIR]/dm/verbose.log"
],
"name": "rm old verbose.log",
"~followup_annotations": [
"-u",
"\nimport glob\nimport sys\nwith open(sys.argv[1], 'w') as f:\n f.write('\\n'.join(glob.glob(sys.argv[2])))\n",
"/path/to/tmp/",
- "[CWD]/dm/*"
+ "[START_DIR]/dm/*"
],
"name": "find images"
},
"cmd": [
"gsutil",
"cp",
- "[CWD]/dm/*",
+ "[START_DIR]/dm/*",
"gs://skia-infra-gm/dm-images-v1"
],
"name": "upload images"
"cp",
"-z",
"json,log",
- "[CWD]/tmp_upload/*",
+ "[START_DIR]/tmp_upload/*",
"gs://skia-infra-gm/trybot/dm-json-v1/2012/05/14/12/abc123/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot/1337000001/456789/12"
],
"name": "upload JSON and logs"
"python",
"-u",
"\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",
- "[CWD]/tmp_upload",
+ "[START_DIR]/tmp_upload",
"511"
],
"name": "makedirs tmp dir",
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[CWD]/dm/dm.json",
- "[CWD]/tmp_upload"
+ "[START_DIR]/dm/dm.json",
+ "[START_DIR]/tmp_upload"
],
"name": "copy dm.json"
},
"python",
"-u",
"\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
- "[CWD]/dm/verbose.log",
- "[CWD]/tmp_upload"
+ "[START_DIR]/dm/verbose.log",
+ "[START_DIR]/tmp_upload"
],
"name": "copy verbose.log"
},
"python",
"-u",
"\nimport os\nimport sys\nos.remove(sys.argv[1])\n",
- "[CWD]/dm/dm.json"
+ "[START_DIR]/dm/dm.json"
],
"name": "rm old dm.json",
"~followup_annotations": [
"python",
"-u",
"\nimport os\nimport sys\nos.remove(sys.argv[1])\n",
- "[CWD]/dm/verbose.log"
+ "[START_DIR]/dm/verbose.log"
],
"name": "rm old verbose.log",
"~followup_annotations": [
"-u",
"\nimport glob\nimport sys\nwith open(sys.argv[1], 'w') as f:\n f.write('\\n'.join(glob.glob(sys.argv[2])))\n",
"/path/to/tmp/",
- "[CWD]/dm/*"
+ "[START_DIR]/dm/*"
],
"name": "find images"
},
"cmd": [
"gsutil",
"cp",
- "[CWD]/dm/*",
+ "[START_DIR]/dm/*",
"gs://skia-infra-gm/dm-images-v1"
],
"name": "upload images"
"cp",
"-z",
"json,log",
- "[CWD]/tmp_upload/*",
+ "[START_DIR]/tmp_upload/*",
"gs://skia-infra-gm/trybot/dm-json-v1/2012/05/14/12/abc123/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot/1337000001/12345/1002"
],
"name": "upload JSON and logs"
builder_name = api.properties['buildername']
revision = api.properties['revision']
- results_dir = api.path['cwd'].join('dm')
+ results_dir = api.path['start_dir'].join('dm')
# Move dm.json and verbose.log to their own directory.
json_file = results_dir.join(DM_JSON)
log_file = results_dir.join(VERBOSE_LOG)
- tmp_dir = api.path['cwd'].join('tmp_upload')
+ tmp_dir = api.path['start_dir'].join('tmp_upload')
api.shutil.makedirs('tmp dir', tmp_dir, infra_step=True)
api.shutil.copy('copy dm.json', json_file, tmp_dir)
api.shutil.copy('copy verbose.log', log_file, tmp_dir)
"/path/to/tmp/",
"*.json"
],
- "cwd": "[CWD]/perfdata/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug/data",
+ "cwd": "[START_DIR]/perfdata/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug/data",
"name": "find results"
},
{
"public-read",
"-z",
"json",
- "[CWD]/perfdata/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug/data/nanobench_abc123.json",
+ "[START_DIR]/perfdata/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug/data/nanobench_abc123.json",
"gs://skia-perf/nano-json-v1/2012/05/14/12/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug/nanobench_abc123.json"
],
"name": "upload"
"/path/to/tmp/",
"*.json"
],
- "cwd": "[CWD]/perfdata/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot/data",
+ "cwd": "[START_DIR]/perfdata/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot/data",
"name": "find results"
},
{
"public-read",
"-z",
"json",
- "[CWD]/perfdata/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot/data/nanobench_abc123.json",
+ "[START_DIR]/perfdata/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot/data/nanobench_abc123.json",
"gs://skia-perf/trybot/nano-json-v1/2012/05/14/12/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot/456789/12/nanobench_abc123.json"
],
"name": "upload"
"/path/to/tmp/",
"*.json"
],
- "cwd": "[CWD]/perfdata/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot/data",
+ "cwd": "[START_DIR]/perfdata/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot/data",
"name": "find results"
},
{
"public-read",
"-z",
"json",
- "[CWD]/perfdata/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot/data/nanobench_abc123.json",
+ "[START_DIR]/perfdata/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot/data/nanobench_abc123.json",
"gs://skia-perf/trybot/nano-json-v1/2012/05/14/12/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot/12345/1002/nanobench_abc123.json"
],
"name": "upload"
builder_name = api.properties['buildername']
now = api.time.utcnow()
- src_path = api.path['cwd'].join(
+ src_path = api.path['start_dir'].join(
'perfdata', builder_name, 'data')
results = api.file.glob(
'find results',
project_id: "build"
url: "https://chromium.googlesource.com/chromium/tools/build.git"
branch: "master"
- revision: "19600e62c4a1217b57a99486ae1cf39cfa10310c"
+ revision: "7bef3619099d890f888b58f46969cb59dc66eadb"
}
deps {
project_id: "depot_tools"
url: "https://chromium.googlesource.com/chromium/tools/depot_tools.git"
branch: "master"
- revision: "fda50ca02dfd8edea5abd0b9019a87793b80db3e"
+ revision: "0bfa9ad781d20a6514aa07c0bc711605b10d99fa"
}
deps {
project_id: "recipe_engine"
url: "https://chromium.googlesource.com/external/github.com/luci/recipes-py.git"
branch: "master"
- revision: "d6020a7ef29d3f7fb77d16a1cd6b32c7b2f09dc2"
+ revision: "a239f1551fb3ba35d72b9ad4d0cf80ee08c29b22"
}