| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "[SLAVE_BUILD]/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-Ubuntu-GCC-Arm7-Release-Android" | 8 "Build-Ubuntu-GCC-Arm7-Release-Android" |
| 9 ], | 9 ], |
| 10 "cwd": "[SLAVE_BUILD]/skia", | 10 "cwd": "[SLAVE_BUILD]/skia", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 "@@@STEP_LOG_LINE@json.output@}@@@", | 41 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 42 "@@@STEP_LOG_END@json.output@@@" | 42 "@@@STEP_LOG_END@json.output@@@" |
| 43 ] | 43 ] |
| 44 }, | 44 }, |
| 45 { | 45 { |
| 46 "cmd": [ | 46 "cmd": [ |
| 47 "python", | 47 "python", |
| 48 "-u", | 48 "-u", |
| 49 "import json\nimport subprocess\nimport sys\n\nccache = None\ntry:\n ccac
he = subprocess.check_output(['which', 'ccache']).rstrip()\nexcept:\n pass\npri
nt json.dumps({'ccache': ccache})\n" | 49 "import json\nimport subprocess\nimport sys\n\nccache = None\ntry:\n ccac
he = subprocess.check_output(['which', 'ccache']).rstrip()\nexcept:\n pass\npri
nt json.dumps({'ccache': ccache})\n" |
| 50 ], | 50 ], |
| 51 "cwd": "[SLAVE_BUILD]", | |
| 52 "env": { | 51 "env": { |
| 53 "BUILDTYPE": "Release", | 52 "BUILDTYPE": "Release", |
| 54 "CHROME_HEADLESS": "1", | 53 "CHROME_HEADLESS": "1", |
| 55 "GYP_DEFINES": "skia_arch_type=arm skia_warnings_as_errors=1", | 54 "GYP_DEFINES": "skia_arch_type=arm skia_warnings_as_errors=1", |
| 56 "PATH": "[SLAVE_BUILD]/depot_tools:%(PATH)s", | 55 "PATH": "[SLAVE_BUILD]/depot_tools:%(PATH)s", |
| 57 "SKIA_OUT": "[SLAVE_BUILD]/out" | 56 "SKIA_OUT": "[SLAVE_BUILD]/out" |
| 58 }, | 57 }, |
| 59 "name": "has ccache?", | 58 "name": "has ccache?", |
| 60 "stdout": "/path/to/tmp/json", | 59 "stdout": "/path/to/tmp/json", |
| 61 "~followup_annotations": [ | 60 "~followup_annotations": [ |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "name": "build nanobench" | 118 "name": "build nanobench" |
| 120 }, | 119 }, |
| 121 { | 120 { |
| 122 "cmd": [ | 121 "cmd": [ |
| 123 "python", | 122 "python", |
| 124 "-u", | 123 "-u", |
| 125 "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", | 124 "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", |
| 126 "[SLAVE_BUILD]/out/Release", | 125 "[SLAVE_BUILD]/out/Release", |
| 127 "[SWARM_OUT_DIR]/out/Release" | 126 "[SWARM_OUT_DIR]/out/Release" |
| 128 ], | 127 ], |
| 129 "cwd": "[SLAVE_BUILD]", | |
| 130 "name": "copy build products", | 128 "name": "copy build products", |
| 131 "~followup_annotations": [ | 129 "~followup_annotations": [ |
| 132 "@@@STEP_LOG_LINE@python.inline@import errno@@@", | 130 "@@@STEP_LOG_LINE@python.inline@import errno@@@", |
| 133 "@@@STEP_LOG_LINE@python.inline@import glob@@@", | 131 "@@@STEP_LOG_LINE@python.inline@import glob@@@", |
| 134 "@@@STEP_LOG_LINE@python.inline@import os@@@", | 132 "@@@STEP_LOG_LINE@python.inline@import os@@@", |
| 135 "@@@STEP_LOG_LINE@python.inline@import shutil@@@", | 133 "@@@STEP_LOG_LINE@python.inline@import shutil@@@", |
| 136 "@@@STEP_LOG_LINE@python.inline@import sys@@@", | 134 "@@@STEP_LOG_LINE@python.inline@import sys@@@", |
| 137 "@@@STEP_LOG_LINE@python.inline@@@@", | 135 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 138 "@@@STEP_LOG_LINE@python.inline@src = sys.argv[1]@@@", | 136 "@@@STEP_LOG_LINE@python.inline@src = sys.argv[1]@@@", |
| 139 "@@@STEP_LOG_LINE@python.inline@dst = sys.argv[2]@@@", | 137 "@@@STEP_LOG_LINE@python.inline@dst = sys.argv[2]@@@", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 152 "@@@STEP_LOG_LINE@python.inline@ shutil.move(f, dst)@@@", | 150 "@@@STEP_LOG_LINE@python.inline@ shutil.move(f, dst)@@@", |
| 153 "@@@STEP_LOG_END@python.inline@@@" | 151 "@@@STEP_LOG_END@python.inline@@@" |
| 154 ] | 152 ] |
| 155 }, | 153 }, |
| 156 { | 154 { |
| 157 "name": "$result", | 155 "name": "$result", |
| 158 "recipe_result": null, | 156 "recipe_result": null, |
| 159 "status_code": 0 | 157 "status_code": 0 |
| 160 } | 158 } |
| 161 ] | 159 ] |
| OLD | NEW |