| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "[CWD]/skia/tools/buildbot_spec.py", | 6 "[SLAVE_BUILD]/skia/tools/buildbot_spec.py", |
| 7 "/path/to/tmp/json", | 7 "/path/to/tmp/json", |
| 8 "Build-Mac-Clang-Arm7-Release-iOS" | 8 "Build-Mac-Clang-Arm7-Release-iOS" |
| 9 ], | 9 ], |
| 10 "cwd": "[CWD]/skia", | 10 "cwd": "[SLAVE_BUILD]/skia", |
| 11 "name": "exec buildbot_spec.py", | 11 "name": "exec buildbot_spec.py", |
| 12 "~followup_annotations": [ | 12 "~followup_annotations": [ |
| 13 "@@@STEP_LOG_LINE@json.output@{@@@", | 13 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 14 "@@@STEP_LOG_LINE@json.output@ \"build_targets\": [@@@", | 14 "@@@STEP_LOG_LINE@json.output@ \"build_targets\": [@@@", |
| 15 "@@@STEP_LOG_LINE@json.output@ \"most\"@@@", | 15 "@@@STEP_LOG_LINE@json.output@ \"most\"@@@", |
| 16 "@@@STEP_LOG_LINE@json.output@ ], @@@", | 16 "@@@STEP_LOG_LINE@json.output@ ], @@@", |
| 17 "@@@STEP_LOG_LINE@json.output@ \"builder_cfg\": {@@@", | 17 "@@@STEP_LOG_LINE@json.output@ \"builder_cfg\": {@@@", |
| 18 "@@@STEP_LOG_LINE@json.output@ \"compiler\": \"Clang\", @@@", | 18 "@@@STEP_LOG_LINE@json.output@ \"compiler\": \"Clang\", @@@", |
| 19 "@@@STEP_LOG_LINE@json.output@ \"configuration\": \"Release\", @@@", | 19 "@@@STEP_LOG_LINE@json.output@ \"configuration\": \"Release\", @@@", |
| 20 "@@@STEP_LOG_LINE@json.output@ \"extra_config\": \"iOS\", @@@", | 20 "@@@STEP_LOG_LINE@json.output@ \"extra_config\": \"iOS\", @@@", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 38 "@@@STEP_LOG_LINE@json.output@ \"--dummy-flags\"@@@", | 38 "@@@STEP_LOG_LINE@json.output@ \"--dummy-flags\"@@@", |
| 39 "@@@STEP_LOG_LINE@json.output@ ], @@@", | 39 "@@@STEP_LOG_LINE@json.output@ ], @@@", |
| 40 "@@@STEP_LOG_LINE@json.output@ \"upload_dm_results\": true, @@@", | 40 "@@@STEP_LOG_LINE@json.output@ \"upload_dm_results\": true, @@@", |
| 41 "@@@STEP_LOG_LINE@json.output@ \"upload_perf_results\": false@@@", | 41 "@@@STEP_LOG_LINE@json.output@ \"upload_perf_results\": false@@@", |
| 42 "@@@STEP_LOG_LINE@json.output@}@@@", | 42 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 43 "@@@STEP_LOG_END@json.output@@@" | 43 "@@@STEP_LOG_END@json.output@@@" |
| 44 ] | 44 ] |
| 45 }, | 45 }, |
| 46 { | 46 { |
| 47 "cmd": [ | 47 "cmd": [ |
| 48 "[CWD]/skia/platform_tools/ios/bin/ios_ninja" | 48 "[SLAVE_BUILD]/skia/platform_tools/ios/bin/ios_ninja" |
| 49 ], | 49 ], |
| 50 "cwd": "[CWD]/skia", | 50 "cwd": "[SLAVE_BUILD]/skia", |
| 51 "env": { | 51 "env": { |
| 52 "BUILDTYPE": "Release", | 52 "BUILDTYPE": "Release", |
| 53 "CC": "/usr/bin/clang", | 53 "CC": "/usr/bin/clang", |
| 54 "CHROME_HEADLESS": "1", | 54 "CHROME_HEADLESS": "1", |
| 55 "CXX": "/usr/bin/clang++", | 55 "CXX": "/usr/bin/clang++", |
| 56 "GYP_DEFINES": "skia_arch_type=arm skia_clang_build=1 skia_os=ios skia_war
nings_as_errors=1", | 56 "GYP_DEFINES": "skia_arch_type=arm skia_clang_build=1 skia_os=ios skia_war
nings_as_errors=1", |
| 57 "PATH": "[CWD]/depot_tools:%(PATH)s", | 57 "PATH": "[SLAVE_BUILD]/depot_tools:%(PATH)s", |
| 58 "SKIA_OUT": "[CWD]/out" | 58 "SKIA_OUT": "[SLAVE_BUILD]/out" |
| 59 }, | 59 }, |
| 60 "name": "build iOSShell" | 60 "name": "build iOSShell" |
| 61 }, | 61 }, |
| 62 { | 62 { |
| 63 "cmd": [ | 63 "cmd": [ |
| 64 "python", | 64 "python", |
| 65 "-u", | 65 "-u", |
| 66 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc =
sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['dm', 'dm.exe', 'nan
obench', 'nanobench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'lib/*.so
', 'iOSShell.app', 'iOSShell.ipa']\n\ntry:\n os.makedirs(dst)\nexcept OSError a
s 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
print 'Copying build product %s to %s' % (f, dst)\n shutil.move(f, dst)\n", | 66 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc =
sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['dm', 'dm.exe', 'nan
obench', 'nanobench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'lib/*.so
', 'iOSShell.app', 'iOSShell.ipa']\n\ntry:\n os.makedirs(dst)\nexcept OSError a
s 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
print 'Copying build product %s to %s' % (f, dst)\n shutil.move(f, dst)\n", |
| 67 "[CWD]/out/Release", | 67 "[SLAVE_BUILD]/out/Release", |
| 68 "[SWARM_OUT_DIR]/out/Release" | 68 "[SWARM_OUT_DIR]/out/Release" |
| 69 ], | 69 ], |
| 70 "cwd": "[SLAVE_BUILD]", |
| 70 "name": "copy build products", | 71 "name": "copy build products", |
| 71 "~followup_annotations": [ | 72 "~followup_annotations": [ |
| 72 "@@@STEP_LOG_LINE@python.inline@import errno@@@", | 73 "@@@STEP_LOG_LINE@python.inline@import errno@@@", |
| 73 "@@@STEP_LOG_LINE@python.inline@import glob@@@", | 74 "@@@STEP_LOG_LINE@python.inline@import glob@@@", |
| 74 "@@@STEP_LOG_LINE@python.inline@import os@@@", | 75 "@@@STEP_LOG_LINE@python.inline@import os@@@", |
| 75 "@@@STEP_LOG_LINE@python.inline@import shutil@@@", | 76 "@@@STEP_LOG_LINE@python.inline@import shutil@@@", |
| 76 "@@@STEP_LOG_LINE@python.inline@import sys@@@", | 77 "@@@STEP_LOG_LINE@python.inline@import sys@@@", |
| 77 "@@@STEP_LOG_LINE@python.inline@@@@", | 78 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 78 "@@@STEP_LOG_LINE@python.inline@src = sys.argv[1]@@@", | 79 "@@@STEP_LOG_LINE@python.inline@src = sys.argv[1]@@@", |
| 79 "@@@STEP_LOG_LINE@python.inline@dst = sys.argv[2]@@@", | 80 "@@@STEP_LOG_LINE@python.inline@dst = sys.argv[2]@@@", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 91 "@@@STEP_LOG_LINE@python.inline@ print 'Copying build product %s to %s'
% (f, dst)@@@", | 92 "@@@STEP_LOG_LINE@python.inline@ print 'Copying build product %s to %s'
% (f, dst)@@@", |
| 92 "@@@STEP_LOG_LINE@python.inline@ shutil.move(f, dst)@@@", | 93 "@@@STEP_LOG_LINE@python.inline@ shutil.move(f, dst)@@@", |
| 93 "@@@STEP_LOG_END@python.inline@@@" | 94 "@@@STEP_LOG_END@python.inline@@@" |
| 94 ] | 95 ] |
| 95 }, | 96 }, |
| 96 { | 97 { |
| 97 "cmd": [ | 98 "cmd": [ |
| 98 "python", | 99 "python", |
| 99 "-u", | 100 "-u", |
| 100 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc =
sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['dm', 'dm.exe', 'nan
obench', 'nanobench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'lib/*.so
', 'iOSShell.app', 'iOSShell.ipa']\n\ntry:\n os.makedirs(dst)\nexcept OSError a
s 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
print 'Copying build product %s to %s' % (f, dst)\n shutil.move(f, dst)\n", | 101 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc =
sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['dm', 'dm.exe', 'nan
obench', 'nanobench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'lib/*.so
', 'iOSShell.app', 'iOSShell.ipa']\n\ntry:\n os.makedirs(dst)\nexcept OSError a
s 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
print 'Copying build product %s to %s' % (f, dst)\n shutil.move(f, dst)\n", |
| 101 "[CWD]/skia/xcodebuild/Release-iphoneos", | 102 "[SLAVE_BUILD]/skia/xcodebuild/Release-iphoneos", |
| 102 "[SWARM_OUT_DIR]/xcodebuild/Release-iphoneos" | 103 "[SWARM_OUT_DIR]/xcodebuild/Release-iphoneos" |
| 103 ], | 104 ], |
| 105 "cwd": "[SLAVE_BUILD]", |
| 104 "name": "copy build products (2)", | 106 "name": "copy build products (2)", |
| 105 "~followup_annotations": [ | 107 "~followup_annotations": [ |
| 106 "@@@STEP_LOG_LINE@python.inline@import errno@@@", | 108 "@@@STEP_LOG_LINE@python.inline@import errno@@@", |
| 107 "@@@STEP_LOG_LINE@python.inline@import glob@@@", | 109 "@@@STEP_LOG_LINE@python.inline@import glob@@@", |
| 108 "@@@STEP_LOG_LINE@python.inline@import os@@@", | 110 "@@@STEP_LOG_LINE@python.inline@import os@@@", |
| 109 "@@@STEP_LOG_LINE@python.inline@import shutil@@@", | 111 "@@@STEP_LOG_LINE@python.inline@import shutil@@@", |
| 110 "@@@STEP_LOG_LINE@python.inline@import sys@@@", | 112 "@@@STEP_LOG_LINE@python.inline@import sys@@@", |
| 111 "@@@STEP_LOG_LINE@python.inline@@@@", | 113 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 112 "@@@STEP_LOG_LINE@python.inline@src = sys.argv[1]@@@", | 114 "@@@STEP_LOG_LINE@python.inline@src = sys.argv[1]@@@", |
| 113 "@@@STEP_LOG_LINE@python.inline@dst = sys.argv[2]@@@", | 115 "@@@STEP_LOG_LINE@python.inline@dst = sys.argv[2]@@@", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 126 "@@@STEP_LOG_LINE@python.inline@ shutil.move(f, dst)@@@", | 128 "@@@STEP_LOG_LINE@python.inline@ shutil.move(f, dst)@@@", |
| 127 "@@@STEP_LOG_END@python.inline@@@" | 129 "@@@STEP_LOG_END@python.inline@@@" |
| 128 ] | 130 ] |
| 129 }, | 131 }, |
| 130 { | 132 { |
| 131 "name": "$result", | 133 "name": "$result", |
| 132 "recipe_result": null, | 134 "recipe_result": null, |
| 133 "status_code": 0 | 135 "status_code": 0 |
| 134 } | 136 } |
| 135 ] | 137 ] |
| OLD | NEW |