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-Ubuntu-GCC-x86_64-Release-Valgrind" | 8 "Build-Ubuntu-GCC-x86_64-Release-Valgrind" |
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\": \"GCC\", @@@", | 18 "@@@STEP_LOG_LINE@json.output@ \"compiler\": \"GCC\", @@@", |
19 "@@@STEP_LOG_LINE@json.output@ \"configuration\": \"Release\", @@@", | 19 "@@@STEP_LOG_LINE@json.output@ \"configuration\": \"Release\", @@@", |
20 "@@@STEP_LOG_LINE@json.output@ \"extra_config\": \"Valgrind\", @@@", | 20 "@@@STEP_LOG_LINE@json.output@ \"extra_config\": \"Valgrind\", @@@", |
(...skipping 18 matching lines...) Expand all Loading... |
39 "@@@STEP_LOG_LINE@json.output@ \"upload_perf_results\": false@@@", | 39 "@@@STEP_LOG_LINE@json.output@ \"upload_perf_results\": false@@@", |
40 "@@@STEP_LOG_LINE@json.output@}@@@", | 40 "@@@STEP_LOG_LINE@json.output@}@@@", |
41 "@@@STEP_LOG_END@json.output@@@" | 41 "@@@STEP_LOG_END@json.output@@@" |
42 ] | 42 ] |
43 }, | 43 }, |
44 { | 44 { |
45 "cmd": [ | 45 "cmd": [ |
46 "make", | 46 "make", |
47 "most" | 47 "most" |
48 ], | 48 ], |
49 "cwd": "[CWD]/skia", | 49 "cwd": "[SLAVE_BUILD]/skia", |
50 "env": { | 50 "env": { |
51 "BUILDTYPE": "Release", | 51 "BUILDTYPE": "Release", |
52 "CHROME_HEADLESS": "1", | 52 "CHROME_HEADLESS": "1", |
53 "CHROME_PATH": "[CWD]/src", | 53 "CHROME_PATH": "[SLAVE_BUILD]/src", |
54 "GYP_DEFINES": "skia_arch_type=x86_64 skia_release_optimization_level=1 sk
ia_warnings_as_errors=1", | 54 "GYP_DEFINES": "skia_arch_type=x86_64 skia_release_optimization_level=1 sk
ia_warnings_as_errors=1", |
55 "PATH": "[CWD]/depot_tools:%(PATH)s", | 55 "PATH": "[SLAVE_BUILD]/depot_tools:%(PATH)s", |
56 "SKIA_OUT": "[CWD]/out" | 56 "SKIA_OUT": "[SLAVE_BUILD]/out" |
57 }, | 57 }, |
58 "name": "build most" | 58 "name": "build most" |
59 }, | 59 }, |
60 { | 60 { |
61 "cmd": [ | 61 "cmd": [ |
62 "python", | 62 "python", |
63 "-u", | 63 "-u", |
64 "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", | 64 "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", |
65 "[CWD]/out/Release", | 65 "[SLAVE_BUILD]/out/Release", |
66 "[SWARM_OUT_DIR]/out/Release" | 66 "[SWARM_OUT_DIR]/out/Release" |
67 ], | 67 ], |
| 68 "cwd": "[SLAVE_BUILD]", |
68 "name": "copy build products", | 69 "name": "copy build products", |
69 "~followup_annotations": [ | 70 "~followup_annotations": [ |
70 "@@@STEP_LOG_LINE@python.inline@import errno@@@", | 71 "@@@STEP_LOG_LINE@python.inline@import errno@@@", |
71 "@@@STEP_LOG_LINE@python.inline@import glob@@@", | 72 "@@@STEP_LOG_LINE@python.inline@import glob@@@", |
72 "@@@STEP_LOG_LINE@python.inline@import os@@@", | 73 "@@@STEP_LOG_LINE@python.inline@import os@@@", |
73 "@@@STEP_LOG_LINE@python.inline@import shutil@@@", | 74 "@@@STEP_LOG_LINE@python.inline@import shutil@@@", |
74 "@@@STEP_LOG_LINE@python.inline@import sys@@@", | 75 "@@@STEP_LOG_LINE@python.inline@import sys@@@", |
75 "@@@STEP_LOG_LINE@python.inline@@@@", | 76 "@@@STEP_LOG_LINE@python.inline@@@@", |
76 "@@@STEP_LOG_LINE@python.inline@src = sys.argv[1]@@@", | 77 "@@@STEP_LOG_LINE@python.inline@src = sys.argv[1]@@@", |
77 "@@@STEP_LOG_LINE@python.inline@dst = sys.argv[2]@@@", | 78 "@@@STEP_LOG_LINE@python.inline@dst = sys.argv[2]@@@", |
(...skipping 12 matching lines...) Expand all Loading... |
90 "@@@STEP_LOG_LINE@python.inline@ shutil.move(f, dst)@@@", | 91 "@@@STEP_LOG_LINE@python.inline@ shutil.move(f, dst)@@@", |
91 "@@@STEP_LOG_END@python.inline@@@" | 92 "@@@STEP_LOG_END@python.inline@@@" |
92 ] | 93 ] |
93 }, | 94 }, |
94 { | 95 { |
95 "name": "$result", | 96 "name": "$result", |
96 "recipe_result": null, | 97 "recipe_result": null, |
97 "status_code": 0 | 98 "status_code": 0 |
98 } | 99 } |
99 ] | 100 ] |
OLD | NEW |