Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # -*- python -*- | 1 # -*- python -*- |
|
borenet
2013/04/09 16:31:46
Check out the united diff to see how the name leng
| |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
| 6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
| 7 | 7 |
| 8 # See master.experimental/slaves.cfg for documentation. | 8 # See master.experimental/slaves.cfg for documentation. |
| 9 | 9 |
| 10 | 10 |
| 11 INTEGER_WIDTH = 3 | 11 INTEGER_WIDTH = 3 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 52 >>> print SelfReferenceFormat(d)['key3'] | 52 >>> print SelfReferenceFormat(d)['key3'] |
| 53 %(key1)s2_fail | 53 %(key1)s2_fail |
| 54 """ | 54 """ |
| 55 return _Format(dictionary, dictionary) | 55 return _Format(dictionary, dictionary) |
| 56 | 56 |
| 57 slaves = [SelfReferenceFormat(d) for d in [ | 57 slaves = [SelfReferenceFormat(d) for d in [ |
| 58 { | 58 { |
| 59 'master': 'Skia', | 59 'master': 'Skia', |
| 60 'hostname': 'skiabot-shuttle-ubuntu12-nexuss-001', | 60 'hostname': 'skiabot-shuttle-ubuntu12-nexuss-001', |
| 61 'builder': [ | 61 'builder': [ |
| 62 'Skia_NexusS_4-1_Float_Debug_32', | 62 'Android-4.1-32-NexusS-Debug', |
| 63 'Skia_NexusS_4-1_Float_Release_32', | 63 'Android-4.1-32-NexusS-Release', |
| 64 'Skia_NexusS_4-1_Float_Bench_32', | 64 'Android-4.1-32-NexusS-Bench', |
| 65 'Skia_NexusS_4-1_Float_Debug_32_Trybot', | 65 'Android-4.1-32-NexusS-Debug-Trybot', |
| 66 'Skia_NexusS_4-1_Float_Release_32_Trybot', | 66 'Android-4.1-32-NexusS-Release-Trybot', |
| 67 'Skia_NexusS_4-1_Float_Bench_32_Trybot', | 67 'Android-4.1-32-NexusS-Bench-Trybot', |
| 68 ], | 68 ], |
| 69 'serial': '3835BCDAEF6F00EC', | 69 'serial': '3835BCDAEF6F00EC', |
| 70 'num_cores': '2', | 70 'num_cores': '2', |
| 71 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], | 71 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], |
| 72 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, | 72 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, |
| 73 }, | 73 }, |
| 74 { | 74 { |
| 75 'master': 'Skia', | 75 'master': 'Skia', |
| 76 'hostname': 'skiabot-shuttle-ubuntu12-nexuss-002', | 76 'hostname': 'skiabot-shuttle-ubuntu12-nexuss-002', |
| 77 'builder': [ | 77 'builder': [ |
| 78 'Skia_NexusS_4-1_Float_Debug_32', | 78 'Android-4.1-32-NexusS-Debug', |
| 79 'Skia_NexusS_4-1_Float_Release_32', | 79 'Android-4.1-32-NexusS-Release', |
| 80 'Skia_NexusS_4-1_Float_Bench_32', | 80 'Android-4.1-32-NexusS-Bench', |
| 81 'Skia_NexusS_4-1_Float_Debug_32_Trybot', | 81 'Android-4.1-32-NexusS-Debug-Trybot', |
| 82 'Skia_NexusS_4-1_Float_Release_32_Trybot', | 82 'Android-4.1-32-NexusS-Release-Trybot', |
| 83 'Skia_NexusS_4-1_Float_Bench_32_Trybot', | 83 'Android-4.1-32-NexusS-Bench-Trybot', |
| 84 ], | 84 ], |
| 85 'serial': '3935B4F8CA4B00EC', | 85 'serial': '3935B4F8CA4B00EC', |
| 86 'num_cores': '2', | 86 'num_cores': '2', |
| 87 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], | 87 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], |
| 88 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, | 88 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, |
| 89 }, | 89 }, |
| 90 { | 90 { |
| 91 'master': 'Skia', | 91 'master': 'Skia', |
| 92 'hostname': 'skiabot-shuttle-ubuntu12-xoom-001', | 92 'hostname': 'skiabot-shuttle-ubuntu12-xoom-001', |
| 93 'builder': [ | 93 'builder': [ |
| 94 'Skia_Xoom_4-1_Float_Debug_32', | 94 'Android-4.1-32-Xoom-Debug', |
| 95 'Skia_Xoom_4-1_Float_Release_32', | 95 'Android-4.1-32-Xoom-Release', |
| 96 'Skia_Xoom_4-1_Float_Bench_32', | 96 'Android-4.1-32-Xoom-Bench', |
| 97 'Skia_Xoom_4-1_Float_Debug_32_Trybot', | 97 'Android-4.1-32-Xoom-Debug-Trybot', |
| 98 'Skia_Xoom_4-1_Float_Release_32_Trybot', | 98 'Android-4.1-32-Xoom-Release-Trybot', |
| 99 'Skia_Xoom_4-1_Float_Bench_32_Trybot', | 99 'Android-4.1-32-Xoom-Bench-Trybot', |
| 100 ], | 100 ], |
| 101 'serial': '1700618542c101d7', | 101 'serial': '1700618542c101d7', |
| 102 'num_cores': '2', | 102 'num_cores': '2', |
| 103 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], | 103 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], |
| 104 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, | 104 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, |
| 105 }, | 105 }, |
| 106 { | 106 { |
| 107 'master': 'Skia', | 107 'master': 'Skia', |
| 108 'hostname': 'skiabot-shuttle-ubuntu12-xoom-002', | 108 'hostname': 'skiabot-shuttle-ubuntu12-xoom-002', |
| 109 'builder': [ | 109 'builder': [ |
| 110 'Skia_Xoom_4-1_Float_Debug_32', | 110 'Android-4.1-32-Xoom-Debug', |
| 111 'Skia_Xoom_4-1_Float_Release_32', | 111 'Android-4.1-32-Xoom-Release', |
| 112 'Skia_Xoom_4-1_Float_Bench_32', | 112 'Android-4.1-32-Xoom-Bench', |
| 113 'Skia_Xoom_4-1_Float_Debug_32_Trybot', | 113 'Android-4.1-32-Xoom-Debug-Trybot', |
| 114 'Skia_Xoom_4-1_Float_Release_32_Trybot', | 114 'Android-4.1-32-Xoom-Release-Trybot', |
| 115 'Skia_Xoom_4-1_Float_Bench_32_Trybot', | 115 'Android-4.1-32-Xoom-Bench-Trybot', |
| 116 ], | 116 ], |
| 117 'serial': '027c104942212397', | 117 'serial': '027c104942212397', |
| 118 'num_cores': '2', | 118 'num_cores': '2', |
| 119 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], | 119 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], |
| 120 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, | 120 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, |
| 121 }, | 121 }, |
| 122 { | 122 { |
| 123 'master': 'Skia', | 123 'master': 'Skia', |
| 124 'hostname': 'skiabot-shuttle-ubuntu12-xoom-003', | 124 'hostname': 'skiabot-shuttle-ubuntu12-xoom-003', |
| 125 'builder': [ | 125 'builder': [ |
| 126 'Skia_Xoom_4-1_Float_Debug_32', | 126 'Android-4.1-32-Xoom-Debug', |
| 127 'Skia_Xoom_4-1_Float_Release_32', | 127 'Android-4.1-32-Xoom-Release', |
| 128 'Skia_Xoom_4-1_Float_Bench_32', | 128 'Android-4.1-32-Xoom-Bench', |
| 129 'Skia_Xoom_4-1_Float_Debug_32_Trybot', | 129 'Android-4.1-32-Xoom-Debug-Trybot', |
| 130 'Skia_Xoom_4-1_Float_Release_32_Trybot', | 130 'Android-4.1-32-Xoom-Release-Trybot', |
| 131 'Skia_Xoom_4-1_Float_Bench_32_Trybot', | 131 'Android-4.1-32-Xoom-Bench-Trybot', |
| 132 ], | 132 ], |
| 133 'serial': '1700618443a00497', | 133 'serial': '1700618443a00497', |
| 134 'num_cores': '2', | 134 'num_cores': '2', |
| 135 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], | 135 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], |
| 136 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, | 136 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, |
| 137 }, | 137 }, |
| 138 { | 138 { |
| 139 'master': 'Skia', | 139 'master': 'Skia', |
| 140 'hostname': 'skiabot-shuttle-ubuntu12-galaxynexus-001', | 140 'hostname': 'skiabot-shuttle-ubuntu12-galaxynexus-001', |
| 141 'builder': [ | 141 'builder': [ |
| 142 'Skia_GalaxyNexus_4-1_Float_Debug_32', | 142 'Android-4.1-32-GalaxyNexus-Debug', |
| 143 'Skia_GalaxyNexus_4-1_Float_Release_32', | 143 'Android-4.1-32-GalaxyNexus-Release', |
| 144 'Skia_GalaxyNexus_4-1_Float_Bench_32', | 144 'Android-4.1-32-GalaxyNexus-Bench', |
| 145 'Skia_GalaxyNexus_4-1_Float_Debug_32_Trybot', | 145 'Android-4.1-32-GalaxyNexus-Debug-Trybot', |
| 146 'Skia_GalaxyNexus_4-1_Float_Release_32_Trybot', | 146 'Android-4.1-32-GalaxyNexus-Release-Trybot', |
| 147 'Skia_GalaxyNexus_4-1_Float_Bench_32_Trybot', | 147 'Android-4.1-32-GalaxyNexus-Bench-Trybot', |
| 148 ], | 148 ], |
| 149 'serial': '0149A97C1601B015', | 149 'serial': '0149A97C1601B015', |
| 150 'num_cores': '2', | 150 'num_cores': '2', |
| 151 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], | 151 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], |
| 152 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, | 152 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, |
| 153 }, | 153 }, |
| 154 { | 154 { |
| 155 'master': 'Skia', | 155 'master': 'Skia', |
| 156 'hostname': 'skiabot-shuttle-ubuntu12-nexus4-001', | 156 'hostname': 'skiabot-shuttle-ubuntu12-nexus4-001', |
| 157 'builder': [ | 157 'builder': [ |
| 158 'Skia_Nexus4_4-1_Float_Debug_32', | 158 'Android-4.1-32-Nexus4-Debug', |
| 159 'Skia_Nexus4_4-1_Float_Release_32', | 159 'Android-4.1-32-Nexus4-Release', |
| 160 'Skia_Nexus4_4-1_Float_Bench_32', | 160 'Android-4.1-32-Nexus4-Bench', |
| 161 'Skia_Nexus4_4-1_Float_Debug_32_Trybot', | 161 'Android-4.1-32-Nexus4-Debug-Trybot', |
| 162 'Skia_Nexus4_4-1_Float_Release_32_Trybot', | 162 'Android-4.1-32-Nexus4-Release-Trybot', |
| 163 'Skia_Nexus4_4-1_Float_Bench_32_Trybot', | 163 'Android-4.1-32-Nexus4-Bench-Trybot', |
| 164 ], | 164 ], |
| 165 'serial': '0012746f51cea6b9', | 165 'serial': '0012746f51cea6b9', |
| 166 'num_cores': '4', | 166 'num_cores': '4', |
| 167 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], | 167 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], |
| 168 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, | 168 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, |
| 169 }, | 169 }, |
| 170 { | 170 { |
| 171 'master': 'Skia', | 171 'master': 'Skia', |
| 172 'hostname': 'skiabot-shuttle-ubuntu12-nexus7-001', | 172 'hostname': 'skiabot-shuttle-ubuntu12-nexus7-001', |
| 173 'builder': [ | 173 'builder': [ |
| 174 'Skia_Nexus7_4-1_Float_Debug_32', | 174 'Android-4.1-32-Nexus7-Debug', |
| 175 'Skia_Nexus7_4-1_Float_Release_32', | 175 'Android-4.1-32-Nexus7-Release', |
| 176 'Skia_Nexus7_4-1_Float_Bench_32', | 176 'Android-4.1-32-Nexus7-Bench', |
| 177 'Skia_Nexus7_4-1_Float_Debug_32_Trybot', | 177 'Android-4.1-32-Nexus7-Debug-Trybot', |
| 178 'Skia_Nexus7_4-1_Float_Release_32_Trybot', | 178 'Android-4.1-32-Nexus7-Release-Trybot', |
| 179 'Skia_Nexus7_4-1_Float_Bench_32_Trybot', | 179 'Android-4.1-32-Nexus7-Bench-Trybot', |
| 180 ], | 180 ], |
| 181 'serial': '015d210a13480604', | 181 'serial': '015d210a13480604', |
| 182 'num_cores': '4', | 182 'num_cores': '4', |
| 183 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], | 183 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], |
| 184 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, | 184 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, |
| 185 }, | 185 }, |
| 186 { | 186 { |
| 187 'master': 'Skia', | 187 'master': 'Skia', |
| 188 'hostname': 'skiabot-shuttle-ubuntu12-nexus7-002', | 188 'hostname': 'skiabot-shuttle-ubuntu12-nexus7-002', |
| 189 'builder': [ | 189 'builder': [ |
| 190 'Skia_Nexus7_4-1_Float_Debug_32', | 190 'Android-4.1-32-Nexus7-Debug', |
| 191 'Skia_Nexus7_4-1_Float_Release_32', | 191 'Android-4.1-32-Nexus7-Release', |
| 192 'Skia_Nexus7_4-1_Float_Bench_32', | 192 'Android-4.1-32-Nexus7-Bench', |
| 193 'Skia_Nexus7_4-1_Float_Debug_32_Trybot', | 193 'Android-4.1-32-Nexus7-Debug-Trybot', |
| 194 'Skia_Nexus7_4-1_Float_Release_32_Trybot', | 194 'Android-4.1-32-Nexus7-Release-Trybot', |
| 195 'Skia_Nexus7_4-1_Float_Bench_32_Trybot', | 195 'Android-4.1-32-Nexus7-Bench-Trybot', |
| 196 ], | 196 ], |
| 197 'serial': '015d18848c280217', | 197 'serial': '015d18848c280217', |
| 198 'num_cores': '4', | 198 'num_cores': '4', |
| 199 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], | 199 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], |
| 200 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, | 200 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, |
| 201 }, | 201 }, |
| 202 { | 202 { |
| 203 'master': 'Skia', | 203 'master': 'Skia', |
| 204 'hostname': 'skiabot-shuttle-ubuntu12-nexus7-003', | 204 'hostname': 'skiabot-shuttle-ubuntu12-nexus7-003', |
| 205 'builder': [ | 205 'builder': [ |
| 206 'Skia_Nexus7_4-1_Float_Debug_32', | 206 'Android-4.1-32-Nexus7-Debug', |
| 207 'Skia_Nexus7_4-1_Float_Release_32', | 207 'Android-4.1-32-Nexus7-Release', |
| 208 'Skia_Nexus7_4-1_Float_Bench_32', | 208 'Android-4.1-32-Nexus7-Bench', |
| 209 'Skia_Nexus7_4-1_Float_Debug_32_Trybot', | 209 'Android-4.1-32-Nexus7-Debug-Trybot', |
| 210 'Skia_Nexus7_4-1_Float_Release_32_Trybot', | 210 'Android-4.1-32-Nexus7-Release-Trybot', |
| 211 'Skia_Nexus7_4-1_Float_Bench_32_Trybot', | 211 'Android-4.1-32-Nexus7-Bench-Trybot', |
| 212 ], | 212 ], |
| 213 'serial': '015d16897c401e17', | 213 'serial': '015d16897c401e17', |
| 214 'num_cores': '4', | 214 'num_cores': '4', |
| 215 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], | 215 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], |
| 216 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, | 216 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, |
| 217 }, | 217 }, |
| 218 { | 218 { |
| 219 'master': 'Skia', | 219 'master': 'Skia', |
| 220 'hostname': 'skiabot-shuttle-ubuntu12-nexus10-001', | 220 'hostname': 'skiabot-shuttle-ubuntu12-nexus10-001', |
| 221 'builder': [ | 221 'builder': [ |
| 222 'Skia_Nexus10_4-1_Float_Debug_32', | 222 'Android-4.1-32-Nexus10-Debug', |
| 223 'Skia_Nexus10_4-1_Float_Release_32', | 223 'Android-4.1-32-Nexus10-Release', |
| 224 'Skia_Nexus10_4-1_Float_Bench_32', | 224 'Android-4.1-32-Nexus10-Bench', |
| 225 'Skia_Nexus10_4-1_Float_Debug_32_Trybot', | 225 'Android-4.1-32-Nexus10-Debug-Trybot', |
| 226 'Skia_Nexus10_4-1_Float_Release_32_Trybot', | 226 'Android-4.1-32-Nexus10-Release-Trybot', |
| 227 'Skia_Nexus10_4-1_Float_Bench_32_Trybot', | 227 'Android-4.1-32-Nexus10-Bench-Trybot', |
| 228 ], | 228 ], |
| 229 'serial': 'R32C801B5LH', | 229 'serial': 'R32C801B5LH', |
| 230 'num_cores': '2', | 230 'num_cores': '2', |
| 231 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], | 231 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], |
| 232 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, | 232 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, |
| 233 }, | 233 }, |
| 234 { | 234 { |
| 235 'master': 'Skia', | 235 'master': 'Skia', |
| 236 'hostname': 'skiabot-shuttle-ubuntu12-nexus10-002', | 236 'hostname': 'skiabot-shuttle-ubuntu12-nexus10-002', |
| 237 'builder': [ | 237 'builder': [ |
| 238 'Skia_Nexus10_4-1_Float_Debug_32', | 238 'Android-4.1-32-Nexus10-Debug', |
| 239 'Skia_Nexus10_4-1_Float_Release_32', | 239 'Android-4.1-32-Nexus10-Release', |
| 240 'Skia_Nexus10_4-1_Float_Bench_32', | 240 'Android-4.1-32-Nexus10-Bench', |
| 241 'Skia_Nexus10_4-1_Float_Debug_32_Trybot', | 241 'Android-4.1-32-Nexus10-Debug-Trybot', |
| 242 'Skia_Nexus10_4-1_Float_Release_32_Trybot', | 242 'Android-4.1-32-Nexus10-Release-Trybot', |
| 243 'Skia_Nexus10_4-1_Float_Bench_32_Trybot', | 243 'Android-4.1-32-Nexus10-Bench-Trybot', |
| 244 ], | 244 ], |
| 245 'serial': 'R32C801B86F', | 245 'serial': 'R32C801B86F', |
| 246 'num_cores': '2', | 246 'num_cores': '2', |
| 247 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], | 247 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], |
| 248 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, | 248 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, |
| 249 }, | 249 }, |
| 250 { | 250 { |
| 251 'master': 'Skia', | 251 'master': 'Skia', |
| 252 'hostname': 'skiabot-shuttle-ubuntu12-nexus10-003', | 252 'hostname': 'skiabot-shuttle-ubuntu12-nexus10-003', |
| 253 'builder': [ | 253 'builder': [ |
| 254 'Skia_Nexus10_4-1_Float_Debug_32', | 254 'Android-4.1-32-Nexus10-Debug', |
| 255 'Skia_Nexus10_4-1_Float_Release_32', | 255 'Android-4.1-32-Nexus10-Release', |
| 256 'Skia_Nexus10_4-1_Float_Bench_32', | 256 'Android-4.1-32-Nexus10-Bench', |
| 257 'Skia_Nexus10_4-1_Float_Debug_32_Trybot', | 257 'Android-4.1-32-Nexus10-Debug-Trybot', |
| 258 'Skia_Nexus10_4-1_Float_Release_32_Trybot', | 258 'Android-4.1-32-Nexus10-Release-Trybot', |
| 259 'Skia_Nexus10_4-1_Float_Bench_32_Trybot', | 259 'Android-4.1-32-Nexus10-Bench-Trybot', |
| 260 ], | 260 ], |
| 261 'serial': 'R32CB017X2L', | 261 'serial': 'R32CB017X2L', |
| 262 'num_cores': '2', | 262 'num_cores': '2', |
| 263 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], | 263 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], |
| 264 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, | 264 'android_sdk_root': DEFAULT_ANDROID_SDK_ROOT, |
| 265 }, | 265 }, |
| 266 { | 266 { |
| 267 'master': 'Skia', | 267 'master': 'Skia', |
| 268 'hostname': 'skiabot-shuttle-ubuntu12-razri-001', | 268 'hostname': 'skiabot-shuttle-ubuntu12-razri-001', |
| 269 'builder': [ | 269 'builder': [ |
| 270 'Skia_RazrI_4-1_Float_Debug_32', | 270 'Android-4.1-32-RazrI-Debug', |
| 271 'Skia_RazrI_4-1_Float_Release_32', | 271 'Android-4.1-32-RazrI-Release', |
| 272 'Skia_RazrI_4-1_Float_Bench_32', | 272 'Android-4.1-32-RazrI-Bench', |
| 273 'Skia_RazrI_4-1_Float_Debug_32_Trybot', | 273 'Android-4.1-32-RazrI-Debug-Trybot', |
| 274 'Skia_RazrI_4-1_Float_Release_32_Trybot', | 274 'Android-4.1-32-RazrI-Release-Trybot', |
| 275 'Skia_RazrI_4-1_Float_Bench_32_Trybot', | 275 'Android-4.1-32-RazrI-Bench-Trybot', |
| 276 ], | 276 ], |
| 277 'serial': 'TA23702Z9Y', | 277 'serial': 'TA23702Z9Y', |
| 278 'num_cores': '1', | 278 'num_cores': '1', |
| 279 'has_root': False, | 279 'has_root': False, |
| 280 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], | 280 'keepalive_conditions': [ANDROID_KEEPALIVE_CONDITION], |
| 281 'android_sdk_root': '/usr/local/google/android-sdk-linux', | 281 'android_sdk_root': '/usr/local/google/android-sdk-linux', |
| 282 }, | 282 }, |
| 283 { | 283 { |
| 284 'master': 'Skia', | 284 'master': 'Skia', |
| 285 'hostname': 'skiabot-shuttle-ubuntu12-001', | 285 'hostname': 'skiabot-shuttle-ubuntu12-001', |
| 286 'builder': [ | 286 'builder': [ |
| 287 'Skia_Linux_NoGPU_Debug_32', | 287 'Linux-Ubuntu12-32-NoGPU-Debug', |
| 288 'Skia_Linux_NoGPU_Debug_32_Trybot', | 288 'Linux-Ubuntu12-32-NoGPU-Debug-Trybot', |
| 289 ], | 289 ], |
| 290 'num_cores': '8', | 290 'num_cores': '8', |
| 291 }, | 291 }, |
| 292 { | 292 { |
| 293 'master': 'Skia', | 293 'master': 'Skia', |
| 294 'hostname': 'skiabot-shuttle-ubuntu12-002', | 294 'hostname': 'skiabot-shuttle-ubuntu12-002', |
| 295 'builder': [ | 295 'builder': [ |
| 296 'Skia_ChromeOS_Alex_Debug_32', | 296 'ChromeOS-V-32-Alex-Debug', |
| 297 'Skia_ChromeOS_Alex_Release_32', | 297 'ChromeOS-V-32-Alex-Release', |
| 298 'Skia_ChromeOS_Alex_Bench_32', | 298 'ChromeOS-V-32-Alex-Bench', |
| 299 'Skia_ChromeOS_Alex_Debug_32_Trybot', | 299 'ChromeOS-V-32-Alex-Debug-Trybot', |
| 300 'Skia_ChromeOS_Alex_Release_32_Trybot', | 300 'ChromeOS-V-32-Alex-Release-Trybot', |
| 301 'Skia_ChromeOS_Alex_Bench_32_Trybot', | 301 'ChromeOS-V-32-Alex-Bench-Trybot', |
| 302 | |
| 303 ], | 302 ], |
| 304 'ssh_host': '192.168.1.134', | 303 'ssh_host': '192.168.1.134', |
| 305 'ssh_port': '22', | 304 'ssh_port': '22', |
| 306 }, | 305 }, |
| 307 { | 306 { |
| 308 'master': 'Skia', | 307 'master': 'Skia', |
| 309 'hostname': 'skiabot-shuttle-ubuntu12-ati5770-001', | 308 'hostname': 'skiabot-shuttle-ubuntu12-ati5770-001', |
| 310 'builder': [ | 309 'builder': [ |
| 311 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Debug_32', | 310 'Linux-Ubuntu12-32-ATI5770-Debug', |
|
epoger
2013/04/09 17:38:36
With the changes discussed above, I think this wil
| |
| 312 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Release_32', | 311 'Linux-Ubuntu12-32-ATI5770-Release', |
| 313 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Bench_32', | 312 'Linux-Ubuntu12-32-ATI5770-Bench', |
| 314 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Debug_64', | 313 'Linux-Ubuntu12-64-ATI5770-Debug', |
| 315 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Release_64', | 314 'Linux-Ubuntu12-64-ATI5770-Release', |
| 316 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Bench_64', | 315 'Linux-Ubuntu12-64-ATI5770-Bench', |
| 317 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Debug_32_Trybot', | 316 'Linux-Ubuntu12-32-ATI5770-Debug-Trybot', |
| 318 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Release_32_Trybot', | 317 'Linux-Ubuntu12-32-ATI5770-Release-Trybot', |
| 319 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Bench_32_Trybot', | 318 'Linux-Ubuntu12-32-ATI5770-Bench-Trybot', |
| 320 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Debug_64_Trybot', | 319 'Linux-Ubuntu12-64-ATI5770-Debug-Trybot', |
| 321 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Release_64_Trybot', | 320 'Linux-Ubuntu12-64-ATI5770-Release-Trybot', |
| 322 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Bench_64_Trybot', | 321 'Linux-Ubuntu12-64-ATI5770-Bench-Trybot', |
| 323 ], | 322 ], |
| 324 'num_cores': '8', | 323 'num_cores': '8', |
| 325 }, | 324 }, |
| 326 ] + [ | 325 ] + [ |
| 327 { | 326 { |
| 328 'master': 'Skia', | 327 'master': 'Skia', |
| 329 'hostname': 'skiabot-macmini-10_6-%s' % ('%d' % i).zfill(INTEGER_WIDTH), | 328 'hostname': 'skiabot-macmini-10_6-%s' % ('%d' % i).zfill(INTEGER_WIDTH), |
| 330 'builder': [ | 329 'builder': [ |
| 331 'Skia_Mac_Float_Debug_32', | 330 'OSX-10.6-32-MacMini-Debug', |
| 332 'Skia_Mac_Float_Release_32', | 331 'OSX-10.6-32-MacMini-Release', |
| 333 'Skia_Mac_Float_Debug_64', | 332 'OSX-10.6-64-MacMini-Debug', |
| 334 'Skia_Mac_Float_Release_64', | 333 'OSX-10.6-64-MacMini-Release', |
| 335 'Skia_Mac_Float_Debug_32_Trybot', | 334 'OSX-10.6-32-MacMini-Debug-Trybot', |
| 336 'Skia_Mac_Float_Release_32_Trybot', | 335 'OSX-10.6-32-MacMini-Release-Trybot', |
| 337 'Skia_Mac_Float_Debug_64_Trybot', | 336 'OSX-10.6-64-MacMini-Debug-Trybot', |
| 338 'Skia_Mac_Float_Release_64_Trybot', | 337 'OSX-10.6-64-MacMini-Release-Trybot', |
| 339 ], | 338 ], |
| 340 'num_cores': '4', | 339 'num_cores': '4', |
| 341 } for i in range(CONCURRENT_BUILDERS) | 340 } for i in range(CONCURRENT_BUILDERS) |
| 342 ] + [ | 341 ] + [ |
| 343 { | 342 { |
| 344 'master': 'Skia', | 343 'master': 'Skia', |
| 345 'hostname': 'skiabot-macmini-10_7-%s' % ('%d' % i).zfill(INTEGER_WIDTH), | 344 'hostname': 'skiabot-macmini-10_7-%s' % ('%d' % i).zfill(INTEGER_WIDTH), |
| 346 'builder': [ | 345 'builder': [ |
| 347 'Skia_MacMiniLion_Float_Debug_32', | 346 'OSX-10.7-32-MacMini-Debug', |
| 348 'Skia_MacMiniLion_Float_Release_32', | 347 'OSX-10.7-32-MacMini-Release', |
| 349 'Skia_MacMiniLion_Float_Debug_64', | 348 'OSX-10.7-64-MacMini-Debug', |
| 350 'Skia_MacMiniLion_Float_Release_64', | 349 'OSX-10.7-64-MacMini-Release', |
| 351 'Skia_MacMiniLion_Float_Debug_32_Trybot', | 350 'OSX-10.7-32-MacMini-Debug-Trybot', |
| 352 'Skia_MacMiniLion_Float_Release_32_Trybot', | 351 'OSX-10.7-32-MacMini-Release-Trybot', |
| 353 'Skia_MacMiniLion_Float_Debug_64_Trybot', | 352 'OSX-10.7-64-MacMini-Debug-Trybot', |
| 354 'Skia_MacMiniLion_Float_Release_64_Trybot', | 353 'OSX-10.7-64-MacMini-Release-Trybot', |
| 355 ], | 354 ], |
| 356 'num_cores': '4', | 355 'num_cores': '4', |
| 357 } for i in range(CONCURRENT_BUILDERS) | 356 } for i in range(CONCURRENT_BUILDERS) |
| 358 ] + [ | 357 ] + [ |
| 359 { | 358 { |
| 360 'master': 'Skia', | 359 'master': 'Skia', |
| 361 'hostname': 'skiabot-macmini-10_8-%s' % ('%d' % i).zfill(INTEGER_WIDTH), | 360 'hostname': 'skiabot-macmini-10_8-%s' % ('%d' % i).zfill(INTEGER_WIDTH), |
| 362 'builder': [ | 361 'builder': [ |
| 363 'Skia_MacMini_10_8_Float_Debug_32', | 362 'OSX-10.8-32-MacMini-Debug', |
|
epoger
2013/04/09 17:38:36
Or maybe...
Mac-10.8-Macmini4,1-integrated-Debug-
| |
| 364 'Skia_MacMini_10_8_Float_Release_32', | 363 'OSX-10.8-32-MacMini-Release', |
| 365 'Skia_MacMini_10_8_Float_Debug_64', | 364 'OSX-10.8-64-MacMini-Debug', |
| 366 'Skia_MacMini_10_8_Float_Release_64', | 365 'OSX-10.8-64-MacMini-Release', |
| 367 'Skia_MacMini_10_8_Float_Debug_32_Trybot', | 366 'OSX-10.8-32-MacMini-Debug-Trybot', |
| 368 'Skia_MacMini_10_8_Float_Release_32_Trybot', | 367 'OSX-10.8-32-MacMini-Release-Trybot', |
| 369 'Skia_MacMini_10_8_Float_Debug_64_Trybot', | 368 'OSX-10.8-64-MacMini-Debug-Trybot', |
| 370 'Skia_MacMini_10_8_Float_Release_64_Trybot', | 369 'OSX-10.8-64-MacMini-Release-Trybot', |
| 371 ], | 370 ], |
| 372 'num_cores': '4', | 371 'num_cores': '4', |
| 373 } for i in range(CONCURRENT_BUILDERS) | 372 } for i in range(CONCURRENT_BUILDERS) |
| 374 ] + [ | 373 ] + [ |
| 375 { | 374 { |
| 376 'master': 'Skia', | 375 'master': 'Skia', |
| 377 'hostname': 'skiabot-shuttle-win7-intel-%s' % ('%d' % i).zfill(INTEGER_WIDTH ), | 376 'hostname': 'skiabot-shuttle-win7-intel-%s' % ('%d' % i).zfill(INTEGER_WIDTH ), |
| 378 'builder': [ | 377 'builder': [ |
| 379 'Skia_Shuttle_Win7_Intel_Float_Debug_32', | 378 'Win-7-32-Intel-Debug', |
| 380 'Skia_Shuttle_Win7_Intel_Float_Release_32', | 379 'Win-7-32-Intel-Release', |
| 381 'Skia_Shuttle_Win7_Intel_Float_Debug_64', | 380 'Win-7-64-Intel-Debug', |
| 382 'Skia_Shuttle_Win7_Intel_Float_Release_64', | 381 'Win-7-64-Intel-Release', |
| 383 'Skia_Shuttle_Win7_Intel_Float_Debug_32_Trybot', | 382 'Win-7-32-Intel-Debug-Trybot', |
| 384 'Skia_Shuttle_Win7_Intel_Float_Release_32_Trybot', | 383 'Win-7-32-Intel-Release-Trybot', |
| 385 'Skia_Shuttle_Win7_Intel_Float_Debug_64_Trybot', | 384 'Win-7-64-Intel-Debug-Trybot', |
| 386 'Skia_Shuttle_Win7_Intel_Float_Release_64_Trybot', | 385 'Win-7-64-Intel-Release-Trybot', |
| 387 ], | 386 ], |
| 388 'num_cores': '8', | 387 'num_cores': '8', |
| 389 } for i in range(CONCURRENT_BUILDERS) | 388 } for i in range(CONCURRENT_BUILDERS) |
| 390 ] + [ | 389 ] + [ |
| 391 { | 390 { |
| 392 'master': 'Skia', | 391 'master': 'Skia', |
| 393 'hostname': 'skiabot-shuttle-win7-intel-special-%s' % ('%d' % i).zfill(INTEG ER_WIDTH), | 392 'hostname': 'skiabot-shuttle-win7-intel-special-%s' % ('%d' % i).zfill(INTEG ER_WIDTH), |
| 394 'builder': [ | 393 'builder': [ |
| 395 'Skia_Shuttle_Win7_Intel_Float_ANGLE_Debug_32', | 394 'Win-7-32-Intel-ANGLE-Debug', |
|
epoger
2013/04/09 17:38:36
I would think extra_config would go at the END, an
| |
| 396 'Skia_Shuttle_Win7_Intel_Float_ANGLE_Release_32', | 395 'Win-7-32-Intel-ANGLE-Release', |
| 397 'Skia_Shuttle_Win7_Intel_Float_DirectWrite_Debug_32', | 396 'Win-7-32-Intel-DirectWrite-Debug', |
| 398 'Skia_Shuttle_Win7_Intel_Float_DirectWrite_Release_32', | 397 'Win-7-32-Intel-DirectWrite-Release', |
| 399 'Skia_Shuttle_Win7_Intel_Float_ANGLE_Debug_32_Trybot', | 398 'Win-7-32-Intel-ANGLE-Debug-Trybot', |
| 400 'Skia_Shuttle_Win7_Intel_Float_ANGLE_Release_32_Trybot', | 399 'Win-7-32-Intel-ANGLE-Release-Trybot', |
| 401 'Skia_Shuttle_Win7_Intel_Float_DirectWrite_Debug_32_Trybot', | 400 'Win-7-32-Intel-DirectWrite-Debug-Trybot', |
| 402 'Skia_Shuttle_Win7_Intel_Float_DirectWrite_Release_32_Trybot', | 401 'Win-7-32-Intel-DirectWrite-Release-Trybot', |
| 403 ], | 402 ], |
| 404 'num_cores': '8', | 403 'num_cores': '8', |
| 405 } for i in range(CONCURRENT_BUILDERS) | 404 } for i in range(CONCURRENT_BUILDERS) |
| 406 ] + [ | 405 ] + [ |
| 407 { | 406 { |
| 408 'master': 'Skia', | 407 'master': 'Skia', |
| 409 'hostname': 'skiabot-macmini-10_6-bench', | 408 'hostname': 'skiabot-macmini-10_6-bench', |
| 410 'builder': [ | 409 'builder': [ |
| 411 'Skia_Mac_Float_Bench_32', | 410 'OSX-10.6-32-MacMini-Bench', |
| 412 'Skia_Mac_Float_Bench_64', | 411 'OSX-10.6-64-MacMini-Bench', |
| 413 'Skia_Mac_Float_Bench_32_Trybot', | 412 'OSX-10.6-32-MacMini-Bench-Trybot', |
| 414 'Skia_Mac_Float_Bench_64_Trybot', | 413 'OSX-10.6-64-MacMini-Bench-Trybot', |
| 415 ], | 414 ], |
| 416 }, | 415 }, |
| 417 { | 416 { |
| 418 'master': 'Skia', | 417 'master': 'Skia', |
| 419 'hostname': 'skiabot-macmini-10_7-bench', | 418 'hostname': 'skiabot-macmini-10_7-bench', |
| 420 'builder': [ | 419 'builder': [ |
| 421 'Skia_MacMiniLion_Float_Bench_32', | 420 'OSX-10.7-32-MacMini-Bench', |
| 422 'Skia_MacMiniLion_Float_Bench_64', | 421 'OSX-10.7-64-MacMini-Bench', |
| 423 'Skia_MacMiniLion_Float_Bench_32_Trybot', | 422 'OSX-10.7-32-MacMini-Bench-Trybot', |
| 424 'Skia_MacMiniLion_Float_Bench_64_Trybot', | 423 'OSX-10.7-64-MacMini-Bench-Trybot', |
| 425 ], | 424 ], |
| 426 }, | 425 }, |
| 427 { | 426 { |
| 428 'master': 'Skia', | 427 'master': 'Skia', |
| 429 'hostname': 'skiabot-macmini-10_8-bench', | 428 'hostname': 'skiabot-macmini-10_8-bench', |
| 430 'builder': [ | 429 'builder': [ |
| 431 'Skia_MacMini_10_8_Float_Bench_32', | 430 'OSX-10.8-32-MacMini-Bench', |
| 432 'Skia_MacMini_10_8_Float_Bench_64', | 431 'OSX-10.8-64-MacMini-Bench', |
| 433 'Skia_MacMini_10_8_Float_Bench_32_Trybot', | 432 'OSX-10.8-32-MacMini-Bench-Trybot', |
| 434 'Skia_MacMini_10_8_Float_Bench_64_Trybot', | 433 'OSX-10.8-64-MacMini-Bench-Trybot', |
| 435 ], | 434 ], |
| 436 }, | 435 }, |
| 437 { | 436 { |
| 438 'master': 'Skia', | 437 'master': 'Skia', |
| 439 'hostname': 'skiabot-shuttle-win7-intel-bench', | 438 'hostname': 'skiabot-shuttle-win7-intel-bench', |
| 440 'builder': [ | 439 'builder': [ |
| 441 'Skia_Shuttle_Win7_Intel_Float_Bench_64', | 440 'Win-7-32-Intel-Bench', |
| 442 'Skia_Shuttle_Win7_Intel_Float_Bench_32', | 441 'Win-7-64-Intel-Bench', |
| 443 'Skia_Shuttle_Win7_Intel_Float_ANGLE_Bench_32', | 442 'Win-7-32-Intel-ANGLE-Bench', |
| 444 'Skia_Shuttle_Win7_Intel_Float_DirectWrite_Bench_32', | 443 'Win-7-32-Intel-DirectWrite-Bench', |
| 445 'Skia_Shuttle_Win7_Intel_Float_Bench_64_Trybot', | 444 'Win-7-32-Intel-Bench-Trybot', |
| 446 'Skia_Shuttle_Win7_Intel_Float_Bench_32_Trybot', | 445 'Win-7-64-Intel-Bench-Trybot', |
| 447 'Skia_Shuttle_Win7_Intel_Float_ANGLE_Bench_32_Trybot', | 446 'Win-7-32-Intel-ANGLE-Bench-Trybot', |
| 448 'Skia_Shuttle_Win7_Intel_Float_DirectWrite_Bench_32_Trybot', | 447 'Win-7-32-Intel-DirectWrite-Bench-Trybot', |
| 449 ], | 448 ], |
| 450 }, | 449 }, |
| 451 { | 450 { |
| 452 'master': 'Skia', | 451 'master': 'Skia', |
| 453 'hostname': 'skia-housekeeping-slave-a', | 452 'hostname': 'skia-housekeeping-slave-a', |
| 454 'builder': [ | 453 'builder': [ |
| 455 'Skia_PerCommit_House_Keeping', | 454 'PerCommit-Housekeeping', |
| 456 'Skia_Periodic_House_Keeping', | 455 'Periodic-Housekeeping', |
| 457 'Skia_PerCommit_House_Keeping_Trybot', | 456 'PerCommit-Housekeeping-Trybot', |
| 458 'Skia_Periodic_House_Keeping_Trybot', | 457 'Periodic-Housekeeping-Trybot', |
| 459 ], | 458 ], |
| 460 }, | 459 }, |
| 461 { | 460 { |
| 462 'master': 'Skia', | 461 'master': 'Skia', |
| 463 'hostname': 'skia-housekeeping-slave-b', | 462 'hostname': 'skia-housekeeping-slave-b', |
| 464 'builder': [ | 463 'builder': [ |
| 465 'Skia_PerCommit_House_Keeping', | 464 'PerCommit-Housekeeping', |
| 466 'Skia_Periodic_House_Keeping', | 465 'Periodic-Housekeeping', |
| 467 'Skia_PerCommit_House_Keeping_Trybot', | 466 'PerCommit-Housekeeping-Trybot', |
| 468 'Skia_Periodic_House_Keeping_Trybot', | 467 'Periodic-Housekeeping-Trybot', |
| 469 ], | 468 ], |
| 470 }, | 469 }, |
| 471 ] + [ | 470 ] + [ |
| 472 { | 471 { |
| 473 'master': 'Skia', | 472 'master': 'Skia', |
| 474 'hostname': 'skiabot-linux-compile-%s' % ('%d' % i).zfill(INTEGER_WIDTH), | 473 'hostname': 'skiabot-linux-compile-%s' % ('%d' % i).zfill(INTEGER_WIDTH), |
| 475 'builder': [ | 474 'builder': [ |
| 476 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Compile_Debug_32', | 475 'Linux-Ubuntu12-32-ATI5770-DebugCompile', |
| 477 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Compile_Release_32', | 476 'Linux-Ubuntu12-32-ATI5770-ReleaseCompile', |
| 478 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Compile_Debug_64', | 477 'Linux-Ubuntu12-64-ATI5770-DebugCompile', |
| 479 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Compile_Release_64', | 478 'Linux-Ubuntu12-64-ATI5770-ReleaseCompile', |
| 480 'Skia_NexusS_4-1_Float_Compile_Debug_32', | 479 'Android-4.1-32-NexusS-DebugCompile', |
| 481 'Skia_NexusS_4-1_Float_Compile_Release_32', | 480 'Android-4.1-32-NexusS-ReleaseCompile', |
| 482 'Skia_Xoom_4-1_Float_Compile_Debug_32', | 481 'Android-4.1-32-Xoom-DebugCompile', |
| 483 'Skia_Xoom_4-1_Float_Compile_Release_32', | 482 'Android-4.1-32-Xoom-ReleaseCompile', |
| 484 'Skia_GalaxyNexus_4-1_Float_Compile_Debug_32', | 483 'Android-4.1-32-GalaxyNexus-DebugCompile', |
| 485 'Skia_GalaxyNexus_4-1_Float_Compile_Release_32', | 484 'Android-4.1-32-GalaxyNexus-ReleaseCompile', |
| 486 'Skia_Nexus4_4-1_Float_Compile_Debug_32', | 485 'Android-4.1-32-Nexus4-DebugCompile', |
| 487 'Skia_Nexus4_4-1_Float_Compile_Release_32', | 486 'Android-4.1-32-Nexus4-ReleaseCompile', |
| 488 'Skia_Nexus7_4-1_Float_Compile_Debug_32', | 487 'Android-4.1-32-Nexus7-DebugCompile', |
| 489 'Skia_Nexus7_4-1_Float_Compile_Release_32', | 488 'Android-4.1-32-Nexus7-ReleaseCompile', |
| 490 'Skia_Nexus10_4-1_Float_Compile_Debug_32', | 489 'Android-4.1-32-Nexus10-DebugCompile', |
| 491 'Skia_Nexus10_4-1_Float_Compile_Release_32', | 490 'Android-4.1-32-Nexus10-ReleaseCompile', |
| 492 'Skia_RazrI_4-1_Float_Compile_Debug_32', | 491 'Android-4.1-32-RazrI-DebugCompile', |
| 493 'Skia_RazrI_4-1_Float_Compile_Release_32', | 492 'Android-4.1-32-RazrI-ReleaseCompile', |
| 494 'Skia_Linux_NoGPU_Compile_Debug_32', | 493 'Linux-Ubuntu12-32-NoGPU-DebugCompile', |
| 495 'Skia_Linux_NoGPU_Compile_Release_32', | 494 'Linux-Ubuntu12-32-NoGPU-ReleaseCompile', |
| 496 'Skia_ChromeOS_Alex_Compile_Debug_32', | 495 'ChromeOS-V-32-Alex-DebugCompile', |
| 497 'Skia_ChromeOS_Alex_Compile_Release_32', | 496 'ChromeOS-V-32-Alex-ReleaseCompile', |
| 498 'Skia_Shuttle_Ubuntu12_NaCl_Compile_Debug', | 497 'Linux-Ubuntu12-32_64-NaCl-DebugCompile', |
| 499 'Skia_Shuttle_Ubuntu12_NaCl_Compile_Release', | 498 'Linux-Ubuntu12-32_64-NaCl-ReleaseCompile', |
| 500 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Compile_Debug_32_Trybot', | 499 'Linux-Ubuntu12-32-ATI5770-DebugCompile-Trybot', |
| 501 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Compile_Release_32_Trybot', | 500 'Linux-Ubuntu12-32-ATI5770-ReleaseCompile-Trybot', |
| 502 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Compile_Debug_64_Trybot', | 501 'Linux-Ubuntu12-64-ATI5770-DebugCompile-Trybot', |
| 503 'Skia_Shuttle_Ubuntu12_ATI5770_Float_Compile_Release_64_Trybot', | 502 'Linux-Ubuntu12-64-ATI5770-ReleaseCompile-Trybot', |
| 504 'Skia_NexusS_4-1_Float_Compile_Debug_32_Trybot', | 503 'Android-4.1-32-NexusS-DebugCompile-Trybot', |
| 505 'Skia_NexusS_4-1_Float_Compile_Release_32_Trybot', | 504 'Android-4.1-32-NexusS-ReleaseCompile-Trybot', |
| 506 'Skia_Xoom_4-1_Float_Compile_Debug_32_Trybot', | 505 'Android-4.1-32-Xoom-DebugCompile-Trybot', |
| 507 'Skia_Xoom_4-1_Float_Compile_Release_32_Trybot', | 506 'Android-4.1-32-Xoom-ReleaseCompile-Trybot', |
| 508 'Skia_GalaxyNexus_4-1_Float_Compile_Debug_32_Trybot', | 507 'Android-4.1-32-GalaxyNexus-DebugCompile-Trybot', |
| 509 'Skia_GalaxyNexus_4-1_Float_Compile_Release_32_Trybot', | 508 'Android-4.1-32-GalaxyNexus-ReleaseCompile-Trybot', |
| 510 'Skia_Nexus4_4-1_Float_Compile_Debug_32_Trybot', | 509 'Android-4.1-32-Nexus4-DebugCompile-Trybot', |
| 511 'Skia_Nexus4_4-1_Float_Compile_Release_32_Trybot', | 510 'Android-4.1-32-Nexus4-ReleaseCompile-Trybot', |
| 512 'Skia_Nexus7_4-1_Float_Compile_Debug_32_Trybot', | 511 'Android-4.1-32-Nexus7-DebugCompile-Trybot', |
| 513 'Skia_Nexus7_4-1_Float_Compile_Release_32_Trybot', | 512 'Android-4.1-32-Nexus7-ReleaseCompile-Trybot', |
| 514 'Skia_Nexus10_4-1_Float_Compile_Debug_32_Trybot', | 513 'Android-4.1-32-Nexus10-DebugCompile-Trybot', |
| 515 'Skia_Nexus10_4-1_Float_Compile_Release_32_Trybot', | 514 'Android-4.1-32-Nexus10-ReleaseCompile-Trybot', |
| 516 'Skia_RazrI_4-1_Float_Compile_Debug_32_Trybot', | 515 'Android-4.1-32-RazrI-DebugCompile-Trybot', |
| 517 'Skia_RazrI_4-1_Float_Compile_Release_32_Trybot', | 516 'Android-4.1-32-RazrI-ReleaseCompile-Trybot', |
| 518 'Skia_Linux_NoGPU_Compile_Debug_32_Trybot', | 517 'Linux-Ubuntu12-32-NoGPU-DebugCompile-Trybot', |
| 519 'Skia_Linux_NoGPU_Compile_Release_32_Trybot', | 518 'Linux-Ubuntu12-32-NoGPU-ReleaseCompile-Trybot', |
| 520 'Skia_ChromeOS_Alex_Compile_Debug_32_Trybot', | 519 'ChromeOS-V-32-Alex-DebugCompile-Trybot', |
| 521 'Skia_ChromeOS_Alex_Compile_Release_32_Trybot', | 520 'ChromeOS-V-32-Alex-ReleaseCompile-Trybot', |
| 522 'Skia_Shuttle_Ubuntu12_NaCl_Compile_Debug_Trybot', | 521 'Linux-Ubuntu12-32_64-NaCl-DebugCompile-Trybot', |
| 523 'Skia_Shuttle_Ubuntu12_NaCl_Compile_Release_Trybot', | 522 'Linux-Ubuntu12-32_64-NaCl-ReleaseCompile-Trybot', |
| 524 ], | 523 ], |
| 525 'num_cores': '8', | 524 'num_cores': '8', |
| 526 'android_sdk_root': '/usr/local/google/home/borenet/android_sdk_linux', | 525 'android_sdk_root': '/usr/local/google/home/borenet/android_sdk_linux', |
| 527 'nacl_sdk_root': '/usr/local/google/home/borenet/nacl_sdk/pepper_25', | 526 'nacl_sdk_root': '/usr/local/google/home/borenet/nacl_sdk/pepper_25', |
| 528 } for i in range(COMPILE_BUILDERS) | 527 } for i in range(COMPILE_BUILDERS) |
| 529 ] + [ | 528 ] + [ |
| 530 { | 529 { |
| 531 'master': 'Skia', | 530 'master': 'Skia', |
| 532 'hostname': 'skiabot-mac-10_6-compile-%s' % ('%d' % i).zfill(INTEGER_WIDTH), | 531 'hostname': 'skiabot-mac-10_6-compile-%s' % ('%d' % i).zfill(INTEGER_WIDTH), |
| 533 'builder': [ | 532 'builder': [ |
| 534 'Skia_Mac_Float_Compile_Debug_32', | 533 'OSX-10.6-32-MacMini-DebugCompile', |
| 535 'Skia_Mac_Float_Compile_Release_32', | 534 'OSX-10.6-32-MacMini-ReleaseCompile', |
| 536 'Skia_Mac_Float_Compile_Debug_64', | 535 'OSX-10.6-64-MacMini-DebugCompile', |
| 537 'Skia_Mac_Float_Compile_Release_64', | 536 'OSX-10.6-64-MacMini-ReleaseCompile', |
| 538 'Skia_Mac_Float_Compile_Debug_32_Trybot', | 537 'OSX-10.6-32-MacMini-DebugCompile-Trybot', |
| 539 'Skia_Mac_Float_Compile_Release_32_Trybot', | 538 'OSX-10.6-32-MacMini-ReleaseCompile-Trybot', |
| 540 'Skia_Mac_Float_Compile_Debug_64_Trybot', | 539 'OSX-10.6-64-MacMini-DebugCompile-Trybot', |
| 541 'Skia_Mac_Float_Compile_Release_64_Trybot', | 540 'OSX-10.6-64-MacMini-ReleaseCompile-Trybot', |
| 542 ], | 541 ], |
| 543 'num_cores': '8', | 542 'num_cores': '8', |
| 544 } for i in range(COMPILE_BUILDERS) | 543 } for i in range(COMPILE_BUILDERS) |
| 545 ] + [ | 544 ] + [ |
| 546 { | 545 { |
| 547 'master': 'Skia', | 546 'master': 'Skia', |
| 548 'hostname': 'skiabot-mac-10_7-compile-%s' % ('%d' % i).zfill(INTEGER_WIDTH), | 547 'hostname': 'skiabot-mac-10_7-compile-%s' % ('%d' % i).zfill(INTEGER_WIDTH), |
| 549 'builder': [ | 548 'builder': [ |
| 550 'Skia_MacMiniLion_Float_Compile_Debug_32', | 549 'OSX-10.7-32-MacMini-DebugCompile', |
| 551 'Skia_MacMiniLion_Float_Compile_Release_32', | 550 'OSX-10.7-32-MacMini-ReleaseCompile', |
| 552 'Skia_MacMiniLion_Float_Compile_Debug_64', | 551 'OSX-10.7-64-MacMini-DebugCompile', |
| 553 'Skia_MacMiniLion_Float_Compile_Release_64', | 552 'OSX-10.7-64-MacMini-ReleaseCompile', |
| 554 'Skia_iOS_Compile_Debug_32', | 553 'iOS-6-32-iPhone-DebugCompile', |
| 555 'Skia_iOS_Compile_Release_32', | 554 'iOS-6-32-iPhone-ReleaseCompile', |
| 556 'Skia_MacMiniLion_Float_Compile_Debug_32_Trybot', | 555 'OSX-10.7-32-MacMini-DebugCompile-Trybot', |
| 557 'Skia_MacMiniLion_Float_Compile_Release_32_Trybot', | 556 'OSX-10.7-32-MacMini-ReleaseCompile-Trybot', |
| 558 'Skia_MacMiniLion_Float_Compile_Debug_64_Trybot', | 557 'OSX-10.7-64-MacMini-DebugCompile-Trybot', |
| 559 'Skia_MacMiniLion_Float_Compile_Release_64_Trybot', | 558 'OSX-10.7-64-MacMini-ReleaseCompile-Trybot', |
| 560 'Skia_iOS_Compile_Debug_32_Trybot', | 559 'iOS-6-32-iPhone-DebugCompile-Trybot', |
| 561 'Skia_iOS_Compile_Release_32_Trybot', | 560 'iOS-6-32-iPhone-ReleaseCompile-Trybot', |
| 562 ], | 561 ], |
| 563 'num_cores': '8', | 562 'num_cores': '8', |
| 564 } for i in range(COMPILE_BUILDERS) | 563 } for i in range(COMPILE_BUILDERS) |
| 565 ] + [ | 564 ] + [ |
| 566 { | 565 { |
| 567 'master': 'Skia', | 566 'master': 'Skia', |
| 568 'hostname': 'skiabot-mac-10_8-compile-%s' % ('%d' % i).zfill(INTEGER_WIDTH), | 567 'hostname': 'skiabot-mac-10_8-compile-%s' % ('%d' % i).zfill(INTEGER_WIDTH), |
| 569 'builder': [ | 568 'builder': [ |
| 570 'Skia_MacMini_10_8_Float_Compile_Debug_32', | 569 'OSX-10.8-32-MacMini-DebugCompile', |
| 571 'Skia_MacMini_10_8_Float_Compile_Release_32', | 570 'OSX-10.8-32-MacMini-ReleaseCompile', |
| 572 'Skia_MacMini_10_8_Float_Compile_Debug_64', | 571 'OSX-10.8-64-MacMini-DebugCompile', |
| 573 'Skia_MacMini_10_8_Float_Compile_Release_64', | 572 'OSX-10.8-64-MacMini-ReleaseCompile', |
| 574 'Skia_MacMini_10_8_Float_Compile_Debug_32_Trybot', | 573 'OSX-10.8-32-MacMini-DebugCompile-Trybot', |
| 575 'Skia_MacMini_10_8_Float_Compile_Release_32_Trybot', | 574 'OSX-10.8-32-MacMini-ReleaseCompile-Trybot', |
| 576 'Skia_MacMini_10_8_Float_Compile_Debug_64_Trybot', | 575 'OSX-10.8-64-MacMini-DebugCompile-Trybot', |
| 577 'Skia_MacMini_10_8_Float_Compile_Release_64_Trybot', | 576 'OSX-10.8-64-MacMini-ReleaseCompile-Trybot', |
| 578 ], | 577 ], |
| 579 'num_cores': '8', | 578 'num_cores': '8', |
| 580 } for i in range(COMPILE_BUILDERS) | 579 } for i in range(COMPILE_BUILDERS) |
| 581 ] + [ | 580 ] + [ |
| 582 { | 581 { |
| 583 'master': 'Skia', | 582 'master': 'Skia', |
| 584 'hostname': 'skiabot-win-compile-%s' % ('%d' % i).zfill(INTEGER_WIDTH), | 583 'hostname': 'skiabot-win-compile-%s' % ('%d' % i).zfill(INTEGER_WIDTH), |
| 585 'builder': [ | 584 'builder': [ |
| 586 'Skia_Shuttle_Win7_Intel_Float_Compile_Debug_32', | 585 'Win-7-32-Intel-DebugCompile', |
| 587 'Skia_Shuttle_Win7_Intel_Float_Compile_Release_32', | 586 'Win-7-32-Intel-ReleaseCompile', |
| 588 'Skia_Shuttle_Win7_Intel_Float_Compile_Debug_64', | 587 'Win-7-64-Intel-DebugCompile', |
| 589 'Skia_Shuttle_Win7_Intel_Float_Compile_Release_64', | 588 'Win-7-64-Intel-ReleaseCompile', |
| 590 'Skia_Shuttle_Win7_Intel_Float_ANGLE_Compile_Debug_32', | 589 'Win-7-32-Intel-ANGLE-DebugCompile', |
| 591 'Skia_Shuttle_Win7_Intel_Float_ANGLE_Compile_Release_32', | 590 'Win-7-32-Intel-ANGLE-ReleaseCompile', |
| 592 'Skia_Shuttle_Win7_Intel_Float_DirectWrite_Compile_Debug_32', | 591 'Win-7-32-Intel-DirectWrite-DebugCompile', |
| 593 'Skia_Shuttle_Win7_Intel_Float_DirectWrite_Compile_Release_32', | 592 'Win-7-32-Intel-DirectWrite-ReleaseCompile', |
| 594 'Skia_Shuttle_Win7_Intel_Float_Compile_Debug_32_Trybot', | 593 'Win-7-32-Intel-DebugCompile-Trybot', |
| 595 'Skia_Shuttle_Win7_Intel_Float_Compile_Release_32_Trybot', | 594 'Win-7-32-Intel-ReleaseCompile-Trybot', |
| 596 'Skia_Shuttle_Win7_Intel_Float_Compile_Debug_64_Trybot', | 595 'Win-7-64-Intel-DebugCompile-Trybot', |
| 597 'Skia_Shuttle_Win7_Intel_Float_Compile_Release_64_Trybot', | 596 'Win-7-64-Intel-ReleaseCompile-Trybot', |
| 598 'Skia_Shuttle_Win7_Intel_Float_ANGLE_Compile_Debug_32_Trybot', | 597 'Win-7-32-Intel-ANGLE-DebugCompile-Trybot', |
| 599 'Skia_Shuttle_Win7_Intel_Float_ANGLE_Compile_Release_32_Trybot', | 598 'Win-7-32-Intel-ANGLE-ReleaseCompile-Trybot', |
| 600 'Skia_Shuttle_Win7_Intel_Float_DirectWrite_Compile_Debug_32_Trybot', | 599 'Win-7-32-Intel-DirectWrite-DebugCompile-Trybot', |
| 601 'Skia_Shuttle_Win7_Intel_Float_DirectWrite_Compile_Release_32_Trybot', | 600 'Win-7-32-Intel-DirectWrite-ReleaseCompile-Trybot', |
| 602 ], | 601 ], |
| 603 'num_cores': '8', | 602 'num_cores': '8', |
| 604 } for i in range(COMPILE_BUILDERS) | 603 } for i in range(COMPILE_BUILDERS) |
| 605 ]] | 604 ]] |
| OLD | NEW |