| 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 "client.dynamorio", | 8 "client.dynamorio", |
| 9 "--builder", | 9 "--builder", |
| 10 "linux-v8-dr", | 10 "linux-v8-dr", |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 "make", | 112 "make", |
| 113 "-j5" | 113 "-j5" |
| 114 ], | 114 ], |
| 115 "cwd": "[SLAVE_BUILD]/dynamorio/build", | 115 "cwd": "[SLAVE_BUILD]/dynamorio/build", |
| 116 "name": "Compile Release x64 DynamoRIO" | 116 "name": "Compile Release x64 DynamoRIO" |
| 117 }, | 117 }, |
| 118 { | 118 { |
| 119 "cmd": [ | 119 "cmd": [ |
| 120 "python", | 120 "python", |
| 121 "-u", | 121 "-u", |
| 122 "[BUILD]/scripts/slave/recipe_modules/v8/resources/v8testing.py", | 122 "RECIPE_MODULE[v8]/resources/v8testing.py", |
| 123 "--target", | 123 "--target", |
| 124 "Release", | 124 "Release", |
| 125 "--arch", | 125 "--arch", |
| 126 "x64", | 126 "x64", |
| 127 "--testname", | 127 "--testname", |
| 128 "default", | 128 "default", |
| 129 "--command_prefix", | 129 "--command_prefix", |
| 130 "[SLAVE_BUILD]/dynamorio/build/bin64/drrun -reset_every_nth_pending 0 --", | 130 "[SLAVE_BUILD]/dynamorio/build/bin64/drrun -reset_every_nth_pending 0 --", |
| 131 "--flaky-tests", | 131 "--flaky-tests", |
| 132 "skip", | 132 "skip", |
| 133 "--json-test-results", | 133 "--json-test-results", |
| 134 "/path/to/tmp/json" | 134 "/path/to/tmp/json" |
| 135 ], | 135 ], |
| 136 "cwd": "[SLAVE_BUILD]/v8", | 136 "cwd": "[SLAVE_BUILD]/v8", |
| 137 "name": "Check" | 137 "name": "Check" |
| 138 }, | 138 }, |
| 139 { | 139 { |
| 140 "cmd": [ | 140 "cmd": [ |
| 141 "python", | 141 "python", |
| 142 "-u", | 142 "-u", |
| 143 "[BUILD]/scripts/slave/recipe_modules/v8/resources/v8testing.py", | 143 "RECIPE_MODULE[v8]/resources/v8testing.py", |
| 144 "--target", | 144 "--target", |
| 145 "Release", | 145 "Release", |
| 146 "--arch", | 146 "--arch", |
| 147 "x64", | 147 "x64", |
| 148 "--testname", | 148 "--testname", |
| 149 "default", | 149 "default", |
| 150 "--command_prefix", | 150 "--command_prefix", |
| 151 "[SLAVE_BUILD]/dynamorio/build/bin64/drrun -reset_every_nth_pending 0 --", | 151 "[SLAVE_BUILD]/dynamorio/build/bin64/drrun -reset_every_nth_pending 0 --", |
| 152 "--flaky-tests", | 152 "--flaky-tests", |
| 153 "run", | 153 "run", |
| 154 "--json-test-results", | 154 "--json-test-results", |
| 155 "/path/to/tmp/json" | 155 "/path/to/tmp/json" |
| 156 ], | 156 ], |
| 157 "cwd": "[SLAVE_BUILD]/v8", | 157 "cwd": "[SLAVE_BUILD]/v8", |
| 158 "name": "Check - flaky" | 158 "name": "Check - flaky" |
| 159 } | 159 } |
| 160 ] | 160 ] |
| OLD | NEW |