OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "[BUILD]/scripts/slave/bot_update.py", | 6 "[BUILD]/scripts/slave/bot_update.py", |
7 "--master", | 7 "--master", |
8 "chromium.perf", | 8 "chromium.perf", |
9 "--builder", | 9 "--builder", |
10 "Linux Perf (1)", | 10 "Linux Perf (1)", |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 ], | 69 ], |
70 "env": { | 70 "env": { |
71 "GYP_DEFINES": "branding=Chrome buildtype=Official component=static_librar
y gomadir='[BUILD]/goma' target_arch=x64 use_goma=1" | 71 "GYP_DEFINES": "branding=Chrome buildtype=Official component=static_librar
y gomadir='[BUILD]/goma' target_arch=x64 use_goma=1" |
72 }, | 72 }, |
73 "name": "gclient runhooks" | 73 "name": "gclient runhooks" |
74 }, | 74 }, |
75 { | 75 { |
76 "cmd": [ | 76 "cmd": [ |
77 "python", | 77 "python", |
78 "-u", | 78 "-u", |
| 79 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 80 "[SLAVE_BUILD]/src/testing/buildbot/chromium.perf.json", |
| 81 "/path/to/tmp/json" |
| 82 ], |
| 83 "name": "read test spec", |
| 84 "~followup_annotations": [ |
| 85 "@@@STEP_TEXT@path: [SLAVE_BUILD]/src/testing/buildbot/chromium.perf.json@
@@", |
| 86 "@@@STEP_LOG_LINE@json.output@{}@@@", |
| 87 "@@@STEP_LOG_END@json.output@@@" |
| 88 ] |
| 89 }, |
| 90 { |
| 91 "cmd": [ |
| 92 "python", |
| 93 "-u", |
| 94 "[SLAVE_BUILD]/src/testing/scripts/get_compile_targets.py", |
| 95 "--output", |
| 96 "/path/to/tmp/json", |
| 97 "--", |
| 98 "--build-config-fs", |
| 99 "Release", |
| 100 "--paths", |
| 101 "{\"build\": \"[BUILD]\", \"checkout\": \"[SLAVE_BUILD]/src\"}", |
| 102 "--properties", |
| 103 "{\"buildername\": \"Linux Perf (1)\", \"buildnumber\": 571, \"mastername\
": \"chromium.perf\", \"perf-id\": \"linux-release\", \"results-url\": \"https:/
/chromeperf.appspot.com\", \"slavename\": \"TestSlavename\", \"target_platform\"
: \"linux\"}" |
| 104 ], |
| 105 "name": "get compile targets for scripts", |
| 106 "~followup_annotations": [ |
| 107 "@@@STEP_LOG_LINE@json.output@{}@@@", |
| 108 "@@@STEP_LOG_END@json.output@@@" |
| 109 ] |
| 110 }, |
| 111 { |
| 112 "cmd": [ |
| 113 "python", |
| 114 "-u", |
79 "[BUILD]/scripts/slave/cleanup_temp.py" | 115 "[BUILD]/scripts/slave/cleanup_temp.py" |
80 ], | 116 ], |
81 "name": "cleanup_temp" | 117 "name": "cleanup_temp" |
82 }, | 118 }, |
83 { | 119 { |
84 "cmd": [ | 120 "cmd": [ |
85 "python", | 121 "python", |
86 "-u", | 122 "-u", |
87 "\nimport os, sys\nfrom common import chromium_utils\n\nif os.path.exists(
sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n", | 123 "\nimport os, sys\nfrom common import chromium_utils\n\nif os.path.exists(
sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n", |
88 "[SLAVE_BUILD]/src/out/Release" | 124 "[SLAVE_BUILD]/src/out/Release" |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 "-v", | 256 "-v", |
221 "--b=2" | 257 "--b=2" |
222 ], | 258 ], |
223 "name": "blink_perf.all.release", | 259 "name": "blink_perf.all.release", |
224 "~followup_annotations": [ | 260 "~followup_annotations": [ |
225 "@@@STEP_LOG_LINE@json.output@[]@@@", | 261 "@@@STEP_LOG_LINE@json.output@[]@@@", |
226 "@@@STEP_LOG_END@json.output@@@" | 262 "@@@STEP_LOG_END@json.output@@@" |
227 ] | 263 ] |
228 } | 264 } |
229 ] | 265 ] |
OLD | NEW |