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\": 0, \"mastername\":
\"chromium.perf\", \"perf-id\": \"linux-release\", \"results-url\": \"https://c
hromeperf.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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 "@@@STEP_LOG_END@json.output@@@", | 265 "@@@STEP_LOG_END@json.output@@@", |
230 "@@@STEP_FAILURE@@@" | 266 "@@@STEP_FAILURE@@@" |
231 ] | 267 ] |
232 }, | 268 }, |
233 { | 269 { |
234 "name": "$final_result", | 270 "name": "$final_result", |
235 "reason": "1 tests failed: ['dynamic_perf_tests']", | 271 "reason": "1 tests failed: ['dynamic_perf_tests']", |
236 "status_code": 1 | 272 "status_code": 1 |
237 } | 273 } |
238 ] | 274 ] |
OLD | NEW |