| OLD | NEW |
| 1 config = { | 1 config = { |
| 2 'buildCacheSize': 200, | 2 'buildCacheSize': 200, |
| 3 'buildHorizon': 3000, | 3 'buildHorizon': 3000, |
| 4 'buildbotURL': 'https://uberchromegw.corp.google.com/i/chromiumos.tryserver/', | 4 'buildbotURL': 'https://uberchromegw.corp.google.com/i/chromiumos.tryserver/', |
| 5 'builders': [ | 5 'builders': [ |
| 6 { | 6 { |
| 7 'builddir': 'etc', | 7 'builddir': 'etc', |
| 8 'category': '1etc full|info', | 8 'category': '1etc full|info', |
| 9 'factory': BuildFactory { | 9 'factory': BuildFactory { |
| 10 steps: [ | 10 steps: [ |
| 11 ( | 11 ( |
| 12 <class buildbot.steps.shell.ShellCommand>, | |
| 13 { | |
| 14 'command': [ | |
| 15 'gclient', | |
| 16 'sync', | |
| 17 '--verbose', | |
| 18 '--force', | |
| 19 '--delete_unversioned_trees', | |
| 20 ], | |
| 21 'description': 'Sync buildbot slave files', | |
| 22 'name': 'update_scripts', | |
| 23 'timeout': 300, | |
| 24 'want_stderr': True, | |
| 25 'want_stdout': True, | |
| 26 'workdir': '/b', | |
| 27 }, | |
| 28 ), | |
| 29 ( | |
| 30 <class buildbot.steps.shell.ShellCommand>, | |
| 31 { | |
| 32 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 33 'description': 'Clear and Clone chromite', | |
| 34 'haltOnFailure': True, | |
| 35 'name': 'Clear and Clone chromite', | |
| 36 }, | |
| 37 ), | |
| 38 ( | |
| 39 <class master.chromium_step.AnnotatedCommand>, | 12 <class master.chromium_step.AnnotatedCommand>, |
| 40 { | 13 { |
| 14 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 41 'command': [ | 15 'command': [ |
| 42 'chromite/bin/cbuildbot', | 16 'python', |
| 43 <buildbot.process.properties.WithProperties instance>, | 17 '-u', |
| 44 <master.master_utils.ConditionalProperty instance>, | 18 '../../../scripts/slave/annotated_run.py', |
| 45 <master.master_utils.ConditionalProperty instance>, | 19 <master.factory.commands.WithJsonProperties instance>, |
| 46 <buildbot.process.properties.Property instance>, | 20 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 47 '--clobber', | |
| 48 <buildbot.process.properties.WithProperties instance>, | |
| 49 ], | 21 ], |
| 50 'description': 'cbuildbot', | 22 'description': 'running steps via annotated script', |
| 23 'haltOnFailure': True, |
| 51 'maxTime': 57600, | 24 'maxTime': 57600, |
| 52 'name': 'cbuildbot', | 25 'name': 'steps', |
| 53 'timeout': 9000, | 26 'timeout': 9000, |
| 54 'usePTY': False, | |
| 55 }, | 27 }, |
| 56 ), | 28 ), |
| 57 ], | 29 ], |
| 58 properties: Properties(**{}), | 30 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 59 }, | 31 }, |
| 60 'name': 'etc', | 32 'name': 'etc', |
| 61 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 33 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 34 'properties': {'cbb_variant': 'etc'}, |
| 62 'slavenames': [ | 35 'slavenames': [ |
| 63 'build275-m2', | 36 'build275-m2', |
| 64 'build272-m2', | 37 'build272-m2', |
| 65 'cros-testing3-c2', | 38 'cros-testing3-c2', |
| 66 'build270-m2', | 39 'build270-m2', |
| 67 'build274-m2', | 40 'build274-m2', |
| 68 'cros-testing10-c2', | 41 'cros-testing10-c2', |
| 69 'cros-testing6-c2', | 42 'cros-testing6-c2', |
| 70 'build266-m2', | 43 'build266-m2', |
| 71 'cros-testing4-c2', | 44 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 85 'cros-testing1-c2', | 58 'cros-testing1-c2', |
| 86 'cros-testing9-c2', | 59 'cros-testing9-c2', |
| 87 ], | 60 ], |
| 88 }, | 61 }, |
| 89 { | 62 { |
| 90 'builddir': u'compile-only-pre-cq', | 63 'builddir': u'compile-only-pre-cq', |
| 91 'category': '2precq full|info', | 64 'category': '2precq full|info', |
| 92 'factory': BuildFactory { | 65 'factory': BuildFactory { |
| 93 steps: [ | 66 steps: [ |
| 94 ( | 67 ( |
| 95 <class buildbot.steps.shell.ShellCommand>, | |
| 96 { | |
| 97 'command': [ | |
| 98 'gclient', | |
| 99 'sync', | |
| 100 '--verbose', | |
| 101 '--force', | |
| 102 '--delete_unversioned_trees', | |
| 103 ], | |
| 104 'description': 'Sync buildbot slave files', | |
| 105 'name': 'update_scripts', | |
| 106 'timeout': 300, | |
| 107 'want_stderr': True, | |
| 108 'want_stdout': True, | |
| 109 'workdir': '/b', | |
| 110 }, | |
| 111 ), | |
| 112 ( | |
| 113 <class buildbot.steps.shell.ShellCommand>, | |
| 114 { | |
| 115 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 116 'description': 'Clear and Clone chromite', | |
| 117 'haltOnFailure': True, | |
| 118 'name': 'Clear and Clone chromite', | |
| 119 }, | |
| 120 ), | |
| 121 ( | |
| 122 <class master.chromium_step.AnnotatedCommand>, | 68 <class master.chromium_step.AnnotatedCommand>, |
| 123 { | 69 { |
| 70 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 124 'command': [ | 71 'command': [ |
| 125 'chromite/bin/cbuildbot', | 72 'python', |
| 126 <buildbot.process.properties.WithProperties instance>, | 73 '-u', |
| 127 <master.master_utils.ConditionalProperty instance>, | 74 '../../../scripts/slave/annotated_run.py', |
| 128 <master.master_utils.ConditionalProperty instance>, | 75 <master.factory.commands.WithJsonProperties instance>, |
| 129 <buildbot.process.properties.Property instance>, | 76 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 130 <master.master_utils.ConditionalProperty instance>, | |
| 131 <buildbot.process.properties.WithProperties instance>, | |
| 132 ], | 77 ], |
| 133 'description': 'cbuildbot', | 78 'description': 'running steps via annotated script', |
| 79 'haltOnFailure': True, |
| 134 'maxTime': 57600, | 80 'maxTime': 57600, |
| 135 'name': 'cbuildbot', | 81 'name': 'steps', |
| 136 'timeout': 9000, | 82 'timeout': 9000, |
| 137 'usePTY': False, | |
| 138 }, | 83 }, |
| 139 ), | 84 ), |
| 140 ], | 85 ], |
| 141 properties: Properties(**{}), | 86 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 142 }, | 87 }, |
| 143 'name': u'compile-only-pre-cq', | 88 'name': u'compile-only-pre-cq', |
| 144 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 89 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 90 'properties': {}, |
| 145 'slavenames': [ | 91 'slavenames': [ |
| 146 'build275-m2', | 92 'build275-m2', |
| 147 'build272-m2', | 93 'build272-m2', |
| 148 'cros16-c2', | 94 'cros16-c2', |
| 149 'build218-m2', | 95 'build218-m2', |
| 150 'build231-m2', | 96 'build231-m2', |
| 151 'cros11-c2', | 97 'cros11-c2', |
| 152 'build228-m2', | 98 'build228-m2', |
| 153 'cros10-c2', | 99 'cros10-c2', |
| 154 'cros-testing3-c2', | 100 'cros-testing3-c2', |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 'build213-m2', | 196 'build213-m2', |
| 251 'build244-m2', | 197 'build244-m2', |
| 252 ], | 198 ], |
| 253 }, | 199 }, |
| 254 { | 200 { |
| 255 'builddir': u'no-vmtest-pre-cq', | 201 'builddir': u'no-vmtest-pre-cq', |
| 256 'category': '2precq full|info', | 202 'category': '2precq full|info', |
| 257 'factory': BuildFactory { | 203 'factory': BuildFactory { |
| 258 steps: [ | 204 steps: [ |
| 259 ( | 205 ( |
| 260 <class buildbot.steps.shell.ShellCommand>, | |
| 261 { | |
| 262 'command': [ | |
| 263 'gclient', | |
| 264 'sync', | |
| 265 '--verbose', | |
| 266 '--force', | |
| 267 '--delete_unversioned_trees', | |
| 268 ], | |
| 269 'description': 'Sync buildbot slave files', | |
| 270 'name': 'update_scripts', | |
| 271 'timeout': 300, | |
| 272 'want_stderr': True, | |
| 273 'want_stdout': True, | |
| 274 'workdir': '/b', | |
| 275 }, | |
| 276 ), | |
| 277 ( | |
| 278 <class buildbot.steps.shell.ShellCommand>, | |
| 279 { | |
| 280 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 281 'description': 'Clear and Clone chromite', | |
| 282 'haltOnFailure': True, | |
| 283 'name': 'Clear and Clone chromite', | |
| 284 }, | |
| 285 ), | |
| 286 ( | |
| 287 <class master.chromium_step.AnnotatedCommand>, | 206 <class master.chromium_step.AnnotatedCommand>, |
| 288 { | 207 { |
| 208 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 289 'command': [ | 209 'command': [ |
| 290 'chromite/bin/cbuildbot', | 210 'python', |
| 291 <buildbot.process.properties.WithProperties instance>, | 211 '-u', |
| 292 <master.master_utils.ConditionalProperty instance>, | 212 '../../../scripts/slave/annotated_run.py', |
| 293 <master.master_utils.ConditionalProperty instance>, | 213 <master.factory.commands.WithJsonProperties instance>, |
| 294 <buildbot.process.properties.Property instance>, | 214 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 295 <master.master_utils.ConditionalProperty instance>, | |
| 296 <buildbot.process.properties.WithProperties instance>, | |
| 297 ], | 215 ], |
| 298 'description': 'cbuildbot', | 216 'description': 'running steps via annotated script', |
| 217 'haltOnFailure': True, |
| 299 'maxTime': 57600, | 218 'maxTime': 57600, |
| 300 'name': 'cbuildbot', | 219 'name': 'steps', |
| 301 'timeout': 9000, | 220 'timeout': 9000, |
| 302 'usePTY': False, | |
| 303 }, | 221 }, |
| 304 ), | 222 ), |
| 305 ], | 223 ], |
| 306 properties: Properties(**{}), | 224 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 307 }, | 225 }, |
| 308 'name': u'no-vmtest-pre-cq', | 226 'name': u'no-vmtest-pre-cq', |
| 309 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 227 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 228 'properties': {}, |
| 310 'slavenames': [ | 229 'slavenames': [ |
| 311 'build275-m2', | 230 'build275-m2', |
| 312 'build272-m2', | 231 'build272-m2', |
| 313 'cros16-c2', | 232 'cros16-c2', |
| 314 'build218-m2', | 233 'build218-m2', |
| 315 'build231-m2', | 234 'build231-m2', |
| 316 'cros11-c2', | 235 'cros11-c2', |
| 317 'build228-m2', | 236 'build228-m2', |
| 318 'cros10-c2', | 237 'cros10-c2', |
| 319 'cros-testing3-c2', | 238 'cros-testing3-c2', |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 'build213-m2', | 334 'build213-m2', |
| 416 'build244-m2', | 335 'build244-m2', |
| 417 ], | 336 ], |
| 418 }, | 337 }, |
| 419 { | 338 { |
| 420 'builddir': u'pre-cq', | 339 'builddir': u'pre-cq', |
| 421 'category': '2precq full|info', | 340 'category': '2precq full|info', |
| 422 'factory': BuildFactory { | 341 'factory': BuildFactory { |
| 423 steps: [ | 342 steps: [ |
| 424 ( | 343 ( |
| 425 <class buildbot.steps.shell.ShellCommand>, | |
| 426 { | |
| 427 'command': [ | |
| 428 'gclient', | |
| 429 'sync', | |
| 430 '--verbose', | |
| 431 '--force', | |
| 432 '--delete_unversioned_trees', | |
| 433 ], | |
| 434 'description': 'Sync buildbot slave files', | |
| 435 'name': 'update_scripts', | |
| 436 'timeout': 300, | |
| 437 'want_stderr': True, | |
| 438 'want_stdout': True, | |
| 439 'workdir': '/b', | |
| 440 }, | |
| 441 ), | |
| 442 ( | |
| 443 <class buildbot.steps.shell.ShellCommand>, | |
| 444 { | |
| 445 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 446 'description': 'Clear and Clone chromite', | |
| 447 'haltOnFailure': True, | |
| 448 'name': 'Clear and Clone chromite', | |
| 449 }, | |
| 450 ), | |
| 451 ( | |
| 452 <class master.chromium_step.AnnotatedCommand>, | 344 <class master.chromium_step.AnnotatedCommand>, |
| 453 { | 345 { |
| 346 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 454 'command': [ | 347 'command': [ |
| 455 'chromite/bin/cbuildbot', | 348 'python', |
| 456 <buildbot.process.properties.WithProperties instance>, | 349 '-u', |
| 457 <master.master_utils.ConditionalProperty instance>, | 350 '../../../scripts/slave/annotated_run.py', |
| 458 <master.master_utils.ConditionalProperty instance>, | 351 <master.factory.commands.WithJsonProperties instance>, |
| 459 <buildbot.process.properties.Property instance>, | 352 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 460 <master.master_utils.ConditionalProperty instance>, | |
| 461 <buildbot.process.properties.WithProperties instance>, | |
| 462 ], | 353 ], |
| 463 'description': 'cbuildbot', | 354 'description': 'running steps via annotated script', |
| 355 'haltOnFailure': True, |
| 464 'maxTime': 57600, | 356 'maxTime': 57600, |
| 465 'name': 'cbuildbot', | 357 'name': 'steps', |
| 466 'timeout': 9000, | 358 'timeout': 9000, |
| 467 'usePTY': False, | |
| 468 }, | 359 }, |
| 469 ), | 360 ), |
| 470 ], | 361 ], |
| 471 properties: Properties(**{}), | 362 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 472 }, | 363 }, |
| 473 'name': u'pre-cq', | 364 'name': u'pre-cq', |
| 474 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 365 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 366 'properties': {}, |
| 475 'slavenames': [ | 367 'slavenames': [ |
| 476 'build275-m2', | 368 'build275-m2', |
| 477 'build272-m2', | 369 'build272-m2', |
| 478 'cros16-c2', | 370 'cros16-c2', |
| 479 'build218-m2', | 371 'build218-m2', |
| 480 'build231-m2', | 372 'build231-m2', |
| 481 'cros11-c2', | 373 'cros11-c2', |
| 482 'build228-m2', | 374 'build228-m2', |
| 483 'cros10-c2', | 375 'cros10-c2', |
| 484 'cros-testing3-c2', | 376 'cros-testing3-c2', |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 'build213-m2', | 472 'build213-m2', |
| 581 'build244-m2', | 473 'build244-m2', |
| 582 ], | 474 ], |
| 583 }, | 475 }, |
| 584 { | 476 { |
| 585 'builddir': u'wificell-pre-cq', | 477 'builddir': u'wificell-pre-cq', |
| 586 'category': '2precq full|info', | 478 'category': '2precq full|info', |
| 587 'factory': BuildFactory { | 479 'factory': BuildFactory { |
| 588 steps: [ | 480 steps: [ |
| 589 ( | 481 ( |
| 590 <class buildbot.steps.shell.ShellCommand>, | |
| 591 { | |
| 592 'command': [ | |
| 593 'gclient', | |
| 594 'sync', | |
| 595 '--verbose', | |
| 596 '--force', | |
| 597 '--delete_unversioned_trees', | |
| 598 ], | |
| 599 'description': 'Sync buildbot slave files', | |
| 600 'name': 'update_scripts', | |
| 601 'timeout': 300, | |
| 602 'want_stderr': True, | |
| 603 'want_stdout': True, | |
| 604 'workdir': '/b', | |
| 605 }, | |
| 606 ), | |
| 607 ( | |
| 608 <class buildbot.steps.shell.ShellCommand>, | |
| 609 { | |
| 610 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 611 'description': 'Clear and Clone chromite', | |
| 612 'haltOnFailure': True, | |
| 613 'name': 'Clear and Clone chromite', | |
| 614 }, | |
| 615 ), | |
| 616 ( | |
| 617 <class master.chromium_step.AnnotatedCommand>, | 482 <class master.chromium_step.AnnotatedCommand>, |
| 618 { | 483 { |
| 484 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 619 'command': [ | 485 'command': [ |
| 620 'chromite/bin/cbuildbot', | 486 'python', |
| 621 <buildbot.process.properties.WithProperties instance>, | 487 '-u', |
| 622 <master.master_utils.ConditionalProperty instance>, | 488 '../../../scripts/slave/annotated_run.py', |
| 623 <master.master_utils.ConditionalProperty instance>, | 489 <master.factory.commands.WithJsonProperties instance>, |
| 624 <buildbot.process.properties.Property instance>, | 490 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 625 <master.master_utils.ConditionalProperty instance>, | |
| 626 <buildbot.process.properties.WithProperties instance>, | |
| 627 ], | 491 ], |
| 628 'description': 'cbuildbot', | 492 'description': 'running steps via annotated script', |
| 493 'haltOnFailure': True, |
| 629 'maxTime': 57600, | 494 'maxTime': 57600, |
| 630 'name': 'cbuildbot', | 495 'name': 'steps', |
| 631 'timeout': 9000, | 496 'timeout': 9000, |
| 632 'usePTY': False, | |
| 633 }, | 497 }, |
| 634 ), | 498 ), |
| 635 ], | 499 ], |
| 636 properties: Properties(**{}), | 500 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 637 }, | 501 }, |
| 638 'name': u'wificell-pre-cq', | 502 'name': u'wificell-pre-cq', |
| 639 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 503 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 504 'properties': {}, |
| 640 'slavenames': [ | 505 'slavenames': [ |
| 641 'build275-m2', | 506 'build275-m2', |
| 642 'build272-m2', | 507 'build272-m2', |
| 643 'build218-m2', | 508 'build218-m2', |
| 644 'build231-m2', | 509 'build231-m2', |
| 645 'build228-m2', | 510 'build228-m2', |
| 646 'cros-testing3-c2', | 511 'cros-testing3-c2', |
| 647 'build270-m2', | 512 'build270-m2', |
| 648 'build211-m2', | 513 'build211-m2', |
| 649 'build207-m2', | 514 'build207-m2', |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 'build213-m2', | 560 'build213-m2', |
| 696 'build244-m2', | 561 'build244-m2', |
| 697 ], | 562 ], |
| 698 }, | 563 }, |
| 699 { | 564 { |
| 700 'builddir': u'asan', | 565 'builddir': u'asan', |
| 701 'category': '3general full|info', | 566 'category': '3general full|info', |
| 702 'factory': BuildFactory { | 567 'factory': BuildFactory { |
| 703 steps: [ | 568 steps: [ |
| 704 ( | 569 ( |
| 705 <class buildbot.steps.shell.ShellCommand>, | |
| 706 { | |
| 707 'command': [ | |
| 708 'gclient', | |
| 709 'sync', | |
| 710 '--verbose', | |
| 711 '--force', | |
| 712 '--delete_unversioned_trees', | |
| 713 ], | |
| 714 'description': 'Sync buildbot slave files', | |
| 715 'name': 'update_scripts', | |
| 716 'timeout': 300, | |
| 717 'want_stderr': True, | |
| 718 'want_stdout': True, | |
| 719 'workdir': '/b', | |
| 720 }, | |
| 721 ), | |
| 722 ( | |
| 723 <class buildbot.steps.shell.ShellCommand>, | |
| 724 { | |
| 725 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 726 'description': 'Clear and Clone chromite', | |
| 727 'haltOnFailure': True, | |
| 728 'name': 'Clear and Clone chromite', | |
| 729 }, | |
| 730 ), | |
| 731 ( | |
| 732 <class master.chromium_step.AnnotatedCommand>, | 570 <class master.chromium_step.AnnotatedCommand>, |
| 733 { | 571 { |
| 572 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 734 'command': [ | 573 'command': [ |
| 735 'chromite/bin/cbuildbot', | 574 'python', |
| 736 <buildbot.process.properties.WithProperties instance>, | 575 '-u', |
| 737 <master.master_utils.ConditionalProperty instance>, | 576 '../../../scripts/slave/annotated_run.py', |
| 738 <master.master_utils.ConditionalProperty instance>, | 577 <master.factory.commands.WithJsonProperties instance>, |
| 739 <buildbot.process.properties.Property instance>, | 578 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 740 <master.master_utils.ConditionalProperty instance>, | |
| 741 <buildbot.process.properties.WithProperties instance>, | |
| 742 ], | 579 ], |
| 743 'description': 'cbuildbot', | 580 'description': 'running steps via annotated script', |
| 581 'haltOnFailure': True, |
| 744 'maxTime': 57600, | 582 'maxTime': 57600, |
| 745 'name': 'cbuildbot', | 583 'name': 'steps', |
| 746 'timeout': 9000, | 584 'timeout': 9000, |
| 747 'usePTY': False, | |
| 748 }, | 585 }, |
| 749 ), | 586 ), |
| 750 ], | 587 ], |
| 751 properties: Properties(**{}), | 588 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 752 }, | 589 }, |
| 753 'name': u'asan', | 590 'name': u'asan', |
| 754 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 591 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 592 'properties': {}, |
| 755 'slavenames': [ | 593 'slavenames': [ |
| 756 'build275-m2', | 594 'build275-m2', |
| 757 'build272-m2', | 595 'build272-m2', |
| 758 'cros-testing3-c2', | 596 'cros-testing3-c2', |
| 759 'build270-m2', | 597 'build270-m2', |
| 760 'build274-m2', | 598 'build274-m2', |
| 761 'cros-testing10-c2', | 599 'cros-testing10-c2', |
| 762 'cros-testing6-c2', | 600 'cros-testing6-c2', |
| 763 'build266-m2', | 601 'build266-m2', |
| 764 'cros-testing4-c2', | 602 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 778 'cros-testing1-c2', | 616 'cros-testing1-c2', |
| 779 'cros-testing9-c2', | 617 'cros-testing9-c2', |
| 780 ], | 618 ], |
| 781 }, | 619 }, |
| 782 { | 620 { |
| 783 'builddir': u'branch-util', | 621 'builddir': u'branch-util', |
| 784 'category': '3general full|info', | 622 'category': '3general full|info', |
| 785 'factory': BuildFactory { | 623 'factory': BuildFactory { |
| 786 steps: [ | 624 steps: [ |
| 787 ( | 625 ( |
| 788 <class buildbot.steps.shell.ShellCommand>, | |
| 789 { | |
| 790 'command': [ | |
| 791 'gclient', | |
| 792 'sync', | |
| 793 '--verbose', | |
| 794 '--force', | |
| 795 '--delete_unversioned_trees', | |
| 796 ], | |
| 797 'description': 'Sync buildbot slave files', | |
| 798 'name': 'update_scripts', | |
| 799 'timeout': 300, | |
| 800 'want_stderr': True, | |
| 801 'want_stdout': True, | |
| 802 'workdir': '/b', | |
| 803 }, | |
| 804 ), | |
| 805 ( | |
| 806 <class buildbot.steps.shell.ShellCommand>, | |
| 807 { | |
| 808 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 809 'description': 'Clear and Clone chromite', | |
| 810 'haltOnFailure': True, | |
| 811 'name': 'Clear and Clone chromite', | |
| 812 }, | |
| 813 ), | |
| 814 ( | |
| 815 <class master.chromium_step.AnnotatedCommand>, | 626 <class master.chromium_step.AnnotatedCommand>, |
| 816 { | 627 { |
| 628 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 817 'command': [ | 629 'command': [ |
| 818 'chromite/bin/cbuildbot', | 630 'python', |
| 819 <buildbot.process.properties.WithProperties instance>, | 631 '-u', |
| 820 <master.master_utils.ConditionalProperty instance>, | 632 '../../../scripts/slave/annotated_run.py', |
| 821 <master.master_utils.ConditionalProperty instance>, | 633 <master.factory.commands.WithJsonProperties instance>, |
| 822 <buildbot.process.properties.Property instance>, | 634 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 823 <master.master_utils.ConditionalProperty instance>, | |
| 824 <buildbot.process.properties.WithProperties instance>, | |
| 825 ], | 635 ], |
| 826 'description': 'cbuildbot', | 636 'description': 'running steps via annotated script', |
| 637 'haltOnFailure': True, |
| 827 'maxTime': 57600, | 638 'maxTime': 57600, |
| 828 'name': 'cbuildbot', | 639 'name': 'steps', |
| 829 'timeout': 9000, | 640 'timeout': 9000, |
| 830 'usePTY': False, | |
| 831 }, | 641 }, |
| 832 ), | 642 ), |
| 833 ], | 643 ], |
| 834 properties: Properties(**{}), | 644 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 835 }, | 645 }, |
| 836 'name': u'branch-util', | 646 'name': u'branch-util', |
| 837 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 647 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 648 'properties': {}, |
| 838 'slavenames': [ | 649 'slavenames': [ |
| 839 'build275-m2', | 650 'build275-m2', |
| 840 'build272-m2', | 651 'build272-m2', |
| 841 'cros-testing3-c2', | 652 'cros-testing3-c2', |
| 842 'build270-m2', | 653 'build270-m2', |
| 843 'build274-m2', | 654 'build274-m2', |
| 844 'cros-testing10-c2', | 655 'cros-testing10-c2', |
| 845 'cros-testing6-c2', | 656 'cros-testing6-c2', |
| 846 'build266-m2', | 657 'build266-m2', |
| 847 'cros-testing4-c2', | 658 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 861 'cros-testing1-c2', | 672 'cros-testing1-c2', |
| 862 'cros-testing9-c2', | 673 'cros-testing9-c2', |
| 863 ], | 674 ], |
| 864 }, | 675 }, |
| 865 { | 676 { |
| 866 'builddir': u'chrome-perf', | 677 'builddir': u'chrome-perf', |
| 867 'category': '3general full|info', | 678 'category': '3general full|info', |
| 868 'factory': BuildFactory { | 679 'factory': BuildFactory { |
| 869 steps: [ | 680 steps: [ |
| 870 ( | 681 ( |
| 871 <class buildbot.steps.shell.ShellCommand>, | |
| 872 { | |
| 873 'command': [ | |
| 874 'gclient', | |
| 875 'sync', | |
| 876 '--verbose', | |
| 877 '--force', | |
| 878 '--delete_unversioned_trees', | |
| 879 ], | |
| 880 'description': 'Sync buildbot slave files', | |
| 881 'name': 'update_scripts', | |
| 882 'timeout': 300, | |
| 883 'want_stderr': True, | |
| 884 'want_stdout': True, | |
| 885 'workdir': '/b', | |
| 886 }, | |
| 887 ), | |
| 888 ( | |
| 889 <class buildbot.steps.shell.ShellCommand>, | |
| 890 { | |
| 891 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 892 'description': 'Clear and Clone chromite', | |
| 893 'haltOnFailure': True, | |
| 894 'name': 'Clear and Clone chromite', | |
| 895 }, | |
| 896 ), | |
| 897 ( | |
| 898 <class master.chromium_step.AnnotatedCommand>, | 682 <class master.chromium_step.AnnotatedCommand>, |
| 899 { | 683 { |
| 684 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 900 'command': [ | 685 'command': [ |
| 901 'chromite/bin/cbuildbot', | 686 'python', |
| 902 <buildbot.process.properties.WithProperties instance>, | 687 '-u', |
| 903 <master.master_utils.ConditionalProperty instance>, | 688 '../../../scripts/slave/annotated_run.py', |
| 904 <master.master_utils.ConditionalProperty instance>, | 689 <master.factory.commands.WithJsonProperties instance>, |
| 905 <buildbot.process.properties.Property instance>, | 690 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 906 <master.master_utils.ConditionalProperty instance>, | |
| 907 <buildbot.process.properties.WithProperties instance>, | |
| 908 ], | 691 ], |
| 909 'description': 'cbuildbot', | 692 'description': 'running steps via annotated script', |
| 693 'haltOnFailure': True, |
| 910 'maxTime': 57600, | 694 'maxTime': 57600, |
| 911 'name': 'cbuildbot', | 695 'name': 'steps', |
| 912 'timeout': 9000, | 696 'timeout': 9000, |
| 913 'usePTY': False, | |
| 914 }, | 697 }, |
| 915 ), | 698 ), |
| 916 ], | 699 ], |
| 917 properties: Properties(**{}), | 700 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 918 }, | 701 }, |
| 919 'name': u'chrome-perf', | 702 'name': u'chrome-perf', |
| 920 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 703 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 704 'properties': {}, |
| 921 'slavenames': [ | 705 'slavenames': [ |
| 922 'build275-m2', | 706 'build275-m2', |
| 923 'build272-m2', | 707 'build272-m2', |
| 924 'cros-testing3-c2', | 708 'cros-testing3-c2', |
| 925 'build270-m2', | 709 'build270-m2', |
| 926 'build274-m2', | 710 'build274-m2', |
| 927 'cros-testing10-c2', | 711 'cros-testing10-c2', |
| 928 'cros-testing6-c2', | 712 'cros-testing6-c2', |
| 929 'build266-m2', | 713 'build266-m2', |
| 930 'cros-testing4-c2', | 714 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 944 'cros-testing1-c2', | 728 'cros-testing1-c2', |
| 945 'cros-testing9-c2', | 729 'cros-testing9-c2', |
| 946 ], | 730 ], |
| 947 }, | 731 }, |
| 948 { | 732 { |
| 949 'builddir': u'chrome-pfq', | 733 'builddir': u'chrome-pfq', |
| 950 'category': '3general full|info', | 734 'category': '3general full|info', |
| 951 'factory': BuildFactory { | 735 'factory': BuildFactory { |
| 952 steps: [ | 736 steps: [ |
| 953 ( | 737 ( |
| 954 <class buildbot.steps.shell.ShellCommand>, | |
| 955 { | |
| 956 'command': [ | |
| 957 'gclient', | |
| 958 'sync', | |
| 959 '--verbose', | |
| 960 '--force', | |
| 961 '--delete_unversioned_trees', | |
| 962 ], | |
| 963 'description': 'Sync buildbot slave files', | |
| 964 'name': 'update_scripts', | |
| 965 'timeout': 300, | |
| 966 'want_stderr': True, | |
| 967 'want_stdout': True, | |
| 968 'workdir': '/b', | |
| 969 }, | |
| 970 ), | |
| 971 ( | |
| 972 <class buildbot.steps.shell.ShellCommand>, | |
| 973 { | |
| 974 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 975 'description': 'Clear and Clone chromite', | |
| 976 'haltOnFailure': True, | |
| 977 'name': 'Clear and Clone chromite', | |
| 978 }, | |
| 979 ), | |
| 980 ( | |
| 981 <class master.chromium_step.AnnotatedCommand>, | 738 <class master.chromium_step.AnnotatedCommand>, |
| 982 { | 739 { |
| 740 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 983 'command': [ | 741 'command': [ |
| 984 'chromite/bin/cbuildbot', | 742 'python', |
| 985 <buildbot.process.properties.WithProperties instance>, | 743 '-u', |
| 986 <master.master_utils.ConditionalProperty instance>, | 744 '../../../scripts/slave/annotated_run.py', |
| 987 <master.master_utils.ConditionalProperty instance>, | 745 <master.factory.commands.WithJsonProperties instance>, |
| 988 <buildbot.process.properties.Property instance>, | 746 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 989 <master.master_utils.ConditionalProperty instance>, | |
| 990 <buildbot.process.properties.WithProperties instance>, | |
| 991 ], | 747 ], |
| 992 'description': 'cbuildbot', | 748 'description': 'running steps via annotated script', |
| 749 'haltOnFailure': True, |
| 993 'maxTime': 57600, | 750 'maxTime': 57600, |
| 994 'name': 'cbuildbot', | 751 'name': 'steps', |
| 995 'timeout': 9000, | 752 'timeout': 9000, |
| 996 'usePTY': False, | |
| 997 }, | 753 }, |
| 998 ), | 754 ), |
| 999 ], | 755 ], |
| 1000 properties: Properties(**{}), | 756 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1001 }, | 757 }, |
| 1002 'name': u'chrome-pfq', | 758 'name': u'chrome-pfq', |
| 1003 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 759 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 760 'properties': {}, |
| 1004 'slavenames': [ | 761 'slavenames': [ |
| 1005 'build275-m2', | 762 'build275-m2', |
| 1006 'build272-m2', | 763 'build272-m2', |
| 1007 'cros-testing3-c2', | 764 'cros-testing3-c2', |
| 1008 'build270-m2', | 765 'build270-m2', |
| 1009 'build274-m2', | 766 'build274-m2', |
| 1010 'cros-testing10-c2', | 767 'cros-testing10-c2', |
| 1011 'cros-testing6-c2', | 768 'cros-testing6-c2', |
| 1012 'build266-m2', | 769 'build266-m2', |
| 1013 'cros-testing4-c2', | 770 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1027 'cros-testing1-c2', | 784 'cros-testing1-c2', |
| 1028 'cros-testing9-c2', | 785 'cros-testing9-c2', |
| 1029 ], | 786 ], |
| 1030 }, | 787 }, |
| 1031 { | 788 { |
| 1032 'builddir': u'chrome-pfq-informational', | 789 'builddir': u'chrome-pfq-informational', |
| 1033 'category': '3general full|info', | 790 'category': '3general full|info', |
| 1034 'factory': BuildFactory { | 791 'factory': BuildFactory { |
| 1035 steps: [ | 792 steps: [ |
| 1036 ( | 793 ( |
| 1037 <class buildbot.steps.shell.ShellCommand>, | |
| 1038 { | |
| 1039 'command': [ | |
| 1040 'gclient', | |
| 1041 'sync', | |
| 1042 '--verbose', | |
| 1043 '--force', | |
| 1044 '--delete_unversioned_trees', | |
| 1045 ], | |
| 1046 'description': 'Sync buildbot slave files', | |
| 1047 'name': 'update_scripts', | |
| 1048 'timeout': 300, | |
| 1049 'want_stderr': True, | |
| 1050 'want_stdout': True, | |
| 1051 'workdir': '/b', | |
| 1052 }, | |
| 1053 ), | |
| 1054 ( | |
| 1055 <class buildbot.steps.shell.ShellCommand>, | |
| 1056 { | |
| 1057 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 1058 'description': 'Clear and Clone chromite', | |
| 1059 'haltOnFailure': True, | |
| 1060 'name': 'Clear and Clone chromite', | |
| 1061 }, | |
| 1062 ), | |
| 1063 ( | |
| 1064 <class master.chromium_step.AnnotatedCommand>, | 794 <class master.chromium_step.AnnotatedCommand>, |
| 1065 { | 795 { |
| 796 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1066 'command': [ | 797 'command': [ |
| 1067 'chromite/bin/cbuildbot', | 798 'python', |
| 1068 <buildbot.process.properties.WithProperties instance>, | 799 '-u', |
| 1069 <master.master_utils.ConditionalProperty instance>, | 800 '../../../scripts/slave/annotated_run.py', |
| 1070 <master.master_utils.ConditionalProperty instance>, | 801 <master.factory.commands.WithJsonProperties instance>, |
| 1071 <buildbot.process.properties.Property instance>, | 802 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1072 <master.master_utils.ConditionalProperty instance>, | |
| 1073 <buildbot.process.properties.WithProperties instance>, | |
| 1074 ], | 803 ], |
| 1075 'description': 'cbuildbot', | 804 'description': 'running steps via annotated script', |
| 805 'haltOnFailure': True, |
| 1076 'maxTime': 57600, | 806 'maxTime': 57600, |
| 1077 'name': 'cbuildbot', | 807 'name': 'steps', |
| 1078 'timeout': 9000, | 808 'timeout': 9000, |
| 1079 'usePTY': False, | |
| 1080 }, | 809 }, |
| 1081 ), | 810 ), |
| 1082 ], | 811 ], |
| 1083 properties: Properties(**{}), | 812 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1084 }, | 813 }, |
| 1085 'name': u'chrome-pfq-informational', | 814 'name': u'chrome-pfq-informational', |
| 1086 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 815 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 816 'properties': {}, |
| 1087 'slavenames': [ | 817 'slavenames': [ |
| 1088 'build275-m2', | 818 'build275-m2', |
| 1089 'build272-m2', | 819 'build272-m2', |
| 1090 'cros-testing3-c2', | 820 'cros-testing3-c2', |
| 1091 'build270-m2', | 821 'build270-m2', |
| 1092 'build274-m2', | 822 'build274-m2', |
| 1093 'cros-testing10-c2', | 823 'cros-testing10-c2', |
| 1094 'cros-testing6-c2', | 824 'cros-testing6-c2', |
| 1095 'build266-m2', | 825 'build266-m2', |
| 1096 'cros-testing4-c2', | 826 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1110 'cros-testing1-c2', | 840 'cros-testing1-c2', |
| 1111 'cros-testing9-c2', | 841 'cros-testing9-c2', |
| 1112 ], | 842 ], |
| 1113 }, | 843 }, |
| 1114 { | 844 { |
| 1115 'builddir': u'chromium-pfq', | 845 'builddir': u'chromium-pfq', |
| 1116 'category': '3general full|info', | 846 'category': '3general full|info', |
| 1117 'factory': BuildFactory { | 847 'factory': BuildFactory { |
| 1118 steps: [ | 848 steps: [ |
| 1119 ( | 849 ( |
| 1120 <class buildbot.steps.shell.ShellCommand>, | |
| 1121 { | |
| 1122 'command': [ | |
| 1123 'gclient', | |
| 1124 'sync', | |
| 1125 '--verbose', | |
| 1126 '--force', | |
| 1127 '--delete_unversioned_trees', | |
| 1128 ], | |
| 1129 'description': 'Sync buildbot slave files', | |
| 1130 'name': 'update_scripts', | |
| 1131 'timeout': 300, | |
| 1132 'want_stderr': True, | |
| 1133 'want_stdout': True, | |
| 1134 'workdir': '/b', | |
| 1135 }, | |
| 1136 ), | |
| 1137 ( | |
| 1138 <class buildbot.steps.shell.ShellCommand>, | |
| 1139 { | |
| 1140 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 1141 'description': 'Clear and Clone chromite', | |
| 1142 'haltOnFailure': True, | |
| 1143 'name': 'Clear and Clone chromite', | |
| 1144 }, | |
| 1145 ), | |
| 1146 ( | |
| 1147 <class master.chromium_step.AnnotatedCommand>, | 850 <class master.chromium_step.AnnotatedCommand>, |
| 1148 { | 851 { |
| 852 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1149 'command': [ | 853 'command': [ |
| 1150 'chromite/bin/cbuildbot', | 854 'python', |
| 1151 <buildbot.process.properties.WithProperties instance>, | 855 '-u', |
| 1152 <master.master_utils.ConditionalProperty instance>, | 856 '../../../scripts/slave/annotated_run.py', |
| 1153 <master.master_utils.ConditionalProperty instance>, | 857 <master.factory.commands.WithJsonProperties instance>, |
| 1154 <buildbot.process.properties.Property instance>, | 858 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1155 <master.master_utils.ConditionalProperty instance>, | |
| 1156 <buildbot.process.properties.WithProperties instance>, | |
| 1157 ], | 859 ], |
| 1158 'description': 'cbuildbot', | 860 'description': 'running steps via annotated script', |
| 861 'haltOnFailure': True, |
| 1159 'maxTime': 57600, | 862 'maxTime': 57600, |
| 1160 'name': 'cbuildbot', | 863 'name': 'steps', |
| 1161 'timeout': 9000, | 864 'timeout': 9000, |
| 1162 'usePTY': False, | |
| 1163 }, | 865 }, |
| 1164 ), | 866 ), |
| 1165 ], | 867 ], |
| 1166 properties: Properties(**{}), | 868 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1167 }, | 869 }, |
| 1168 'name': u'chromium-pfq', | 870 'name': u'chromium-pfq', |
| 1169 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 871 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 872 'properties': {}, |
| 1170 'slavenames': [ | 873 'slavenames': [ |
| 1171 'build275-m2', | 874 'build275-m2', |
| 1172 'build272-m2', | 875 'build272-m2', |
| 1173 'cros-testing3-c2', | 876 'cros-testing3-c2', |
| 1174 'build270-m2', | 877 'build270-m2', |
| 1175 'build274-m2', | 878 'build274-m2', |
| 1176 'cros-testing10-c2', | 879 'cros-testing10-c2', |
| 1177 'cros-testing6-c2', | 880 'cros-testing6-c2', |
| 1178 'build266-m2', | 881 'build266-m2', |
| 1179 'cros-testing4-c2', | 882 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1193 'cros-testing1-c2', | 896 'cros-testing1-c2', |
| 1194 'cros-testing9-c2', | 897 'cros-testing9-c2', |
| 1195 ], | 898 ], |
| 1196 }, | 899 }, |
| 1197 { | 900 { |
| 1198 'builddir': u'chromium-pfq-informational', | 901 'builddir': u'chromium-pfq-informational', |
| 1199 'category': '3general full|info', | 902 'category': '3general full|info', |
| 1200 'factory': BuildFactory { | 903 'factory': BuildFactory { |
| 1201 steps: [ | 904 steps: [ |
| 1202 ( | 905 ( |
| 1203 <class buildbot.steps.shell.ShellCommand>, | |
| 1204 { | |
| 1205 'command': [ | |
| 1206 'gclient', | |
| 1207 'sync', | |
| 1208 '--verbose', | |
| 1209 '--force', | |
| 1210 '--delete_unversioned_trees', | |
| 1211 ], | |
| 1212 'description': 'Sync buildbot slave files', | |
| 1213 'name': 'update_scripts', | |
| 1214 'timeout': 300, | |
| 1215 'want_stderr': True, | |
| 1216 'want_stdout': True, | |
| 1217 'workdir': '/b', | |
| 1218 }, | |
| 1219 ), | |
| 1220 ( | |
| 1221 <class buildbot.steps.shell.ShellCommand>, | |
| 1222 { | |
| 1223 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 1224 'description': 'Clear and Clone chromite', | |
| 1225 'haltOnFailure': True, | |
| 1226 'name': 'Clear and Clone chromite', | |
| 1227 }, | |
| 1228 ), | |
| 1229 ( | |
| 1230 <class master.chromium_step.AnnotatedCommand>, | 906 <class master.chromium_step.AnnotatedCommand>, |
| 1231 { | 907 { |
| 908 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1232 'command': [ | 909 'command': [ |
| 1233 'chromite/bin/cbuildbot', | 910 'python', |
| 1234 <buildbot.process.properties.WithProperties instance>, | 911 '-u', |
| 1235 <master.master_utils.ConditionalProperty instance>, | 912 '../../../scripts/slave/annotated_run.py', |
| 1236 <master.master_utils.ConditionalProperty instance>, | 913 <master.factory.commands.WithJsonProperties instance>, |
| 1237 <buildbot.process.properties.Property instance>, | 914 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1238 <master.master_utils.ConditionalProperty instance>, | |
| 1239 <buildbot.process.properties.WithProperties instance>, | |
| 1240 ], | 915 ], |
| 1241 'description': 'cbuildbot', | 916 'description': 'running steps via annotated script', |
| 917 'haltOnFailure': True, |
| 1242 'maxTime': 57600, | 918 'maxTime': 57600, |
| 1243 'name': 'cbuildbot', | 919 'name': 'steps', |
| 1244 'timeout': 9000, | 920 'timeout': 9000, |
| 1245 'usePTY': False, | |
| 1246 }, | 921 }, |
| 1247 ), | 922 ), |
| 1248 ], | 923 ], |
| 1249 properties: Properties(**{}), | 924 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1250 }, | 925 }, |
| 1251 'name': u'chromium-pfq-informational', | 926 'name': u'chromium-pfq-informational', |
| 1252 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 927 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 928 'properties': {}, |
| 1253 'slavenames': [ | 929 'slavenames': [ |
| 1254 'build275-m2', | 930 'build275-m2', |
| 1255 'build272-m2', | 931 'build272-m2', |
| 1256 'cros-testing3-c2', | 932 'cros-testing3-c2', |
| 1257 'build270-m2', | 933 'build270-m2', |
| 1258 'build274-m2', | 934 'build274-m2', |
| 1259 'cros-testing10-c2', | 935 'cros-testing10-c2', |
| 1260 'cros-testing6-c2', | 936 'cros-testing6-c2', |
| 1261 'build266-m2', | 937 'build266-m2', |
| 1262 'cros-testing4-c2', | 938 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1276 'cros-testing1-c2', | 952 'cros-testing1-c2', |
| 1277 'cros-testing9-c2', | 953 'cros-testing9-c2', |
| 1278 ], | 954 ], |
| 1279 }, | 955 }, |
| 1280 { | 956 { |
| 1281 'builddir': u'chromiumos-sdk', | 957 'builddir': u'chromiumos-sdk', |
| 1282 'category': '3general full|info', | 958 'category': '3general full|info', |
| 1283 'factory': BuildFactory { | 959 'factory': BuildFactory { |
| 1284 steps: [ | 960 steps: [ |
| 1285 ( | 961 ( |
| 1286 <class buildbot.steps.shell.ShellCommand>, | |
| 1287 { | |
| 1288 'command': [ | |
| 1289 'gclient', | |
| 1290 'sync', | |
| 1291 '--verbose', | |
| 1292 '--force', | |
| 1293 '--delete_unversioned_trees', | |
| 1294 ], | |
| 1295 'description': 'Sync buildbot slave files', | |
| 1296 'name': 'update_scripts', | |
| 1297 'timeout': 300, | |
| 1298 'want_stderr': True, | |
| 1299 'want_stdout': True, | |
| 1300 'workdir': '/b', | |
| 1301 }, | |
| 1302 ), | |
| 1303 ( | |
| 1304 <class buildbot.steps.shell.ShellCommand>, | |
| 1305 { | |
| 1306 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 1307 'description': 'Clear and Clone chromite', | |
| 1308 'haltOnFailure': True, | |
| 1309 'name': 'Clear and Clone chromite', | |
| 1310 }, | |
| 1311 ), | |
| 1312 ( | |
| 1313 <class master.chromium_step.AnnotatedCommand>, | 962 <class master.chromium_step.AnnotatedCommand>, |
| 1314 { | 963 { |
| 964 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1315 'command': [ | 965 'command': [ |
| 1316 'chromite/bin/cbuildbot', | 966 'python', |
| 1317 <buildbot.process.properties.WithProperties instance>, | 967 '-u', |
| 1318 <master.master_utils.ConditionalProperty instance>, | 968 '../../../scripts/slave/annotated_run.py', |
| 1319 <master.master_utils.ConditionalProperty instance>, | 969 <master.factory.commands.WithJsonProperties instance>, |
| 1320 <buildbot.process.properties.Property instance>, | 970 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1321 <master.master_utils.ConditionalProperty instance>, | |
| 1322 <buildbot.process.properties.WithProperties instance>, | |
| 1323 ], | 971 ], |
| 1324 'description': 'cbuildbot', | 972 'description': 'running steps via annotated script', |
| 973 'haltOnFailure': True, |
| 1325 'maxTime': 57600, | 974 'maxTime': 57600, |
| 1326 'name': 'cbuildbot', | 975 'name': 'steps', |
| 1327 'timeout': 9000, | 976 'timeout': 9000, |
| 1328 'usePTY': False, | |
| 1329 }, | 977 }, |
| 1330 ), | 978 ), |
| 1331 ], | 979 ], |
| 1332 properties: Properties(**{}), | 980 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1333 }, | 981 }, |
| 1334 'name': u'chromiumos-sdk', | 982 'name': u'chromiumos-sdk', |
| 1335 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 983 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 984 'properties': {}, |
| 1336 'slavenames': [ | 985 'slavenames': [ |
| 1337 'build275-m2', | 986 'build275-m2', |
| 1338 'build272-m2', | 987 'build272-m2', |
| 1339 'cros-testing3-c2', | 988 'cros-testing3-c2', |
| 1340 'build270-m2', | 989 'build270-m2', |
| 1341 'build274-m2', | 990 'build274-m2', |
| 1342 'cros-testing10-c2', | 991 'cros-testing10-c2', |
| 1343 'cros-testing6-c2', | 992 'cros-testing6-c2', |
| 1344 'build266-m2', | 993 'build266-m2', |
| 1345 'cros-testing4-c2', | 994 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1359 'cros-testing1-c2', | 1008 'cros-testing1-c2', |
| 1360 'cros-testing9-c2', | 1009 'cros-testing9-c2', |
| 1361 ], | 1010 ], |
| 1362 }, | 1011 }, |
| 1363 { | 1012 { |
| 1364 'builddir': u'depthcharge-firmware', | 1013 'builddir': u'depthcharge-firmware', |
| 1365 'category': '3general full|info', | 1014 'category': '3general full|info', |
| 1366 'factory': BuildFactory { | 1015 'factory': BuildFactory { |
| 1367 steps: [ | 1016 steps: [ |
| 1368 ( | 1017 ( |
| 1369 <class buildbot.steps.shell.ShellCommand>, | |
| 1370 { | |
| 1371 'command': [ | |
| 1372 'gclient', | |
| 1373 'sync', | |
| 1374 '--verbose', | |
| 1375 '--force', | |
| 1376 '--delete_unversioned_trees', | |
| 1377 ], | |
| 1378 'description': 'Sync buildbot slave files', | |
| 1379 'name': 'update_scripts', | |
| 1380 'timeout': 300, | |
| 1381 'want_stderr': True, | |
| 1382 'want_stdout': True, | |
| 1383 'workdir': '/b', | |
| 1384 }, | |
| 1385 ), | |
| 1386 ( | |
| 1387 <class buildbot.steps.shell.ShellCommand>, | |
| 1388 { | |
| 1389 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 1390 'description': 'Clear and Clone chromite', | |
| 1391 'haltOnFailure': True, | |
| 1392 'name': 'Clear and Clone chromite', | |
| 1393 }, | |
| 1394 ), | |
| 1395 ( | |
| 1396 <class master.chromium_step.AnnotatedCommand>, | 1018 <class master.chromium_step.AnnotatedCommand>, |
| 1397 { | 1019 { |
| 1020 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1398 'command': [ | 1021 'command': [ |
| 1399 'chromite/bin/cbuildbot', | 1022 'python', |
| 1400 <buildbot.process.properties.WithProperties instance>, | 1023 '-u', |
| 1401 <master.master_utils.ConditionalProperty instance>, | 1024 '../../../scripts/slave/annotated_run.py', |
| 1402 <master.master_utils.ConditionalProperty instance>, | 1025 <master.factory.commands.WithJsonProperties instance>, |
| 1403 <buildbot.process.properties.Property instance>, | 1026 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1404 <master.master_utils.ConditionalProperty instance>, | |
| 1405 <buildbot.process.properties.WithProperties instance>, | |
| 1406 ], | 1027 ], |
| 1407 'description': 'cbuildbot', | 1028 'description': 'running steps via annotated script', |
| 1029 'haltOnFailure': True, |
| 1408 'maxTime': 57600, | 1030 'maxTime': 57600, |
| 1409 'name': 'cbuildbot', | 1031 'name': 'steps', |
| 1410 'timeout': 9000, | 1032 'timeout': 9000, |
| 1411 'usePTY': False, | |
| 1412 }, | 1033 }, |
| 1413 ), | 1034 ), |
| 1414 ], | 1035 ], |
| 1415 properties: Properties(**{}), | 1036 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1416 }, | 1037 }, |
| 1417 'name': u'depthcharge-firmware', | 1038 'name': u'depthcharge-firmware', |
| 1418 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1039 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1040 'properties': {}, |
| 1419 'slavenames': [ | 1041 'slavenames': [ |
| 1420 'build275-m2', | 1042 'build275-m2', |
| 1421 'build272-m2', | 1043 'build272-m2', |
| 1422 'cros-testing3-c2', | 1044 'cros-testing3-c2', |
| 1423 'build270-m2', | 1045 'build270-m2', |
| 1424 'build274-m2', | 1046 'build274-m2', |
| 1425 'cros-testing10-c2', | 1047 'cros-testing10-c2', |
| 1426 'cros-testing6-c2', | 1048 'cros-testing6-c2', |
| 1427 'build266-m2', | 1049 'build266-m2', |
| 1428 'cros-testing4-c2', | 1050 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1442 'cros-testing1-c2', | 1064 'cros-testing1-c2', |
| 1443 'cros-testing9-c2', | 1065 'cros-testing9-c2', |
| 1444 ], | 1066 ], |
| 1445 }, | 1067 }, |
| 1446 { | 1068 { |
| 1447 'builddir': u'depthcharge-full-firmware', | 1069 'builddir': u'depthcharge-full-firmware', |
| 1448 'category': '3general full|info', | 1070 'category': '3general full|info', |
| 1449 'factory': BuildFactory { | 1071 'factory': BuildFactory { |
| 1450 steps: [ | 1072 steps: [ |
| 1451 ( | 1073 ( |
| 1452 <class buildbot.steps.shell.ShellCommand>, | |
| 1453 { | |
| 1454 'command': [ | |
| 1455 'gclient', | |
| 1456 'sync', | |
| 1457 '--verbose', | |
| 1458 '--force', | |
| 1459 '--delete_unversioned_trees', | |
| 1460 ], | |
| 1461 'description': 'Sync buildbot slave files', | |
| 1462 'name': 'update_scripts', | |
| 1463 'timeout': 300, | |
| 1464 'want_stderr': True, | |
| 1465 'want_stdout': True, | |
| 1466 'workdir': '/b', | |
| 1467 }, | |
| 1468 ), | |
| 1469 ( | |
| 1470 <class buildbot.steps.shell.ShellCommand>, | |
| 1471 { | |
| 1472 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 1473 'description': 'Clear and Clone chromite', | |
| 1474 'haltOnFailure': True, | |
| 1475 'name': 'Clear and Clone chromite', | |
| 1476 }, | |
| 1477 ), | |
| 1478 ( | |
| 1479 <class master.chromium_step.AnnotatedCommand>, | 1074 <class master.chromium_step.AnnotatedCommand>, |
| 1480 { | 1075 { |
| 1076 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1481 'command': [ | 1077 'command': [ |
| 1482 'chromite/bin/cbuildbot', | 1078 'python', |
| 1483 <buildbot.process.properties.WithProperties instance>, | 1079 '-u', |
| 1484 <master.master_utils.ConditionalProperty instance>, | 1080 '../../../scripts/slave/annotated_run.py', |
| 1485 <master.master_utils.ConditionalProperty instance>, | 1081 <master.factory.commands.WithJsonProperties instance>, |
| 1486 <buildbot.process.properties.Property instance>, | 1082 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1487 <master.master_utils.ConditionalProperty instance>, | |
| 1488 <buildbot.process.properties.WithProperties instance>, | |
| 1489 ], | 1083 ], |
| 1490 'description': 'cbuildbot', | 1084 'description': 'running steps via annotated script', |
| 1085 'haltOnFailure': True, |
| 1491 'maxTime': 57600, | 1086 'maxTime': 57600, |
| 1492 'name': 'cbuildbot', | 1087 'name': 'steps', |
| 1493 'timeout': 9000, | 1088 'timeout': 9000, |
| 1494 'usePTY': False, | |
| 1495 }, | 1089 }, |
| 1496 ), | 1090 ), |
| 1497 ], | 1091 ], |
| 1498 properties: Properties(**{}), | 1092 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1499 }, | 1093 }, |
| 1500 'name': u'depthcharge-full-firmware', | 1094 'name': u'depthcharge-full-firmware', |
| 1501 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1095 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1096 'properties': {}, |
| 1502 'slavenames': [ | 1097 'slavenames': [ |
| 1503 'build275-m2', | 1098 'build275-m2', |
| 1504 'build272-m2', | 1099 'build272-m2', |
| 1505 'cros-testing3-c2', | 1100 'cros-testing3-c2', |
| 1506 'build270-m2', | 1101 'build270-m2', |
| 1507 'build274-m2', | 1102 'build274-m2', |
| 1508 'cros-testing10-c2', | 1103 'cros-testing10-c2', |
| 1509 'cros-testing6-c2', | 1104 'cros-testing6-c2', |
| 1510 'build266-m2', | 1105 'build266-m2', |
| 1511 'cros-testing4-c2', | 1106 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1525 'cros-testing1-c2', | 1120 'cros-testing1-c2', |
| 1526 'cros-testing9-c2', | 1121 'cros-testing9-c2', |
| 1527 ], | 1122 ], |
| 1528 }, | 1123 }, |
| 1529 { | 1124 { |
| 1530 'builddir': u'factory', | 1125 'builddir': u'factory', |
| 1531 'category': '3general full|info', | 1126 'category': '3general full|info', |
| 1532 'factory': BuildFactory { | 1127 'factory': BuildFactory { |
| 1533 steps: [ | 1128 steps: [ |
| 1534 ( | 1129 ( |
| 1535 <class buildbot.steps.shell.ShellCommand>, | |
| 1536 { | |
| 1537 'command': [ | |
| 1538 'gclient', | |
| 1539 'sync', | |
| 1540 '--verbose', | |
| 1541 '--force', | |
| 1542 '--delete_unversioned_trees', | |
| 1543 ], | |
| 1544 'description': 'Sync buildbot slave files', | |
| 1545 'name': 'update_scripts', | |
| 1546 'timeout': 300, | |
| 1547 'want_stderr': True, | |
| 1548 'want_stdout': True, | |
| 1549 'workdir': '/b', | |
| 1550 }, | |
| 1551 ), | |
| 1552 ( | |
| 1553 <class buildbot.steps.shell.ShellCommand>, | |
| 1554 { | |
| 1555 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 1556 'description': 'Clear and Clone chromite', | |
| 1557 'haltOnFailure': True, | |
| 1558 'name': 'Clear and Clone chromite', | |
| 1559 }, | |
| 1560 ), | |
| 1561 ( | |
| 1562 <class master.chromium_step.AnnotatedCommand>, | 1130 <class master.chromium_step.AnnotatedCommand>, |
| 1563 { | 1131 { |
| 1132 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1564 'command': [ | 1133 'command': [ |
| 1565 'chromite/bin/cbuildbot', | 1134 'python', |
| 1566 <buildbot.process.properties.WithProperties instance>, | 1135 '-u', |
| 1567 <master.master_utils.ConditionalProperty instance>, | 1136 '../../../scripts/slave/annotated_run.py', |
| 1568 <master.master_utils.ConditionalProperty instance>, | 1137 <master.factory.commands.WithJsonProperties instance>, |
| 1569 <buildbot.process.properties.Property instance>, | 1138 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1570 <master.master_utils.ConditionalProperty instance>, | |
| 1571 <buildbot.process.properties.WithProperties instance>, | |
| 1572 ], | 1139 ], |
| 1573 'description': 'cbuildbot', | 1140 'description': 'running steps via annotated script', |
| 1141 'haltOnFailure': True, |
| 1574 'maxTime': 57600, | 1142 'maxTime': 57600, |
| 1575 'name': 'cbuildbot', | 1143 'name': 'steps', |
| 1576 'timeout': 9000, | 1144 'timeout': 9000, |
| 1577 'usePTY': False, | |
| 1578 }, | 1145 }, |
| 1579 ), | 1146 ), |
| 1580 ], | 1147 ], |
| 1581 properties: Properties(**{}), | 1148 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1582 }, | 1149 }, |
| 1583 'name': u'factory', | 1150 'name': u'factory', |
| 1584 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1151 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1152 'properties': {}, |
| 1585 'slavenames': [ | 1153 'slavenames': [ |
| 1586 'build275-m2', | 1154 'build275-m2', |
| 1587 'build272-m2', | 1155 'build272-m2', |
| 1588 'cros-testing3-c2', | 1156 'cros-testing3-c2', |
| 1589 'build270-m2', | 1157 'build270-m2', |
| 1590 'build274-m2', | 1158 'build274-m2', |
| 1591 'cros-testing10-c2', | 1159 'cros-testing10-c2', |
| 1592 'cros-testing6-c2', | 1160 'cros-testing6-c2', |
| 1593 'build266-m2', | 1161 'build266-m2', |
| 1594 'cros-testing4-c2', | 1162 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1608 'cros-testing1-c2', | 1176 'cros-testing1-c2', |
| 1609 'cros-testing9-c2', | 1177 'cros-testing9-c2', |
| 1610 ], | 1178 ], |
| 1611 }, | 1179 }, |
| 1612 { | 1180 { |
| 1613 'builddir': u'firmware', | 1181 'builddir': u'firmware', |
| 1614 'category': '3general full|info', | 1182 'category': '3general full|info', |
| 1615 'factory': BuildFactory { | 1183 'factory': BuildFactory { |
| 1616 steps: [ | 1184 steps: [ |
| 1617 ( | 1185 ( |
| 1618 <class buildbot.steps.shell.ShellCommand>, | |
| 1619 { | |
| 1620 'command': [ | |
| 1621 'gclient', | |
| 1622 'sync', | |
| 1623 '--verbose', | |
| 1624 '--force', | |
| 1625 '--delete_unversioned_trees', | |
| 1626 ], | |
| 1627 'description': 'Sync buildbot slave files', | |
| 1628 'name': 'update_scripts', | |
| 1629 'timeout': 300, | |
| 1630 'want_stderr': True, | |
| 1631 'want_stdout': True, | |
| 1632 'workdir': '/b', | |
| 1633 }, | |
| 1634 ), | |
| 1635 ( | |
| 1636 <class buildbot.steps.shell.ShellCommand>, | |
| 1637 { | |
| 1638 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 1639 'description': 'Clear and Clone chromite', | |
| 1640 'haltOnFailure': True, | |
| 1641 'name': 'Clear and Clone chromite', | |
| 1642 }, | |
| 1643 ), | |
| 1644 ( | |
| 1645 <class master.chromium_step.AnnotatedCommand>, | 1186 <class master.chromium_step.AnnotatedCommand>, |
| 1646 { | 1187 { |
| 1188 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1647 'command': [ | 1189 'command': [ |
| 1648 'chromite/bin/cbuildbot', | 1190 'python', |
| 1649 <buildbot.process.properties.WithProperties instance>, | 1191 '-u', |
| 1650 <master.master_utils.ConditionalProperty instance>, | 1192 '../../../scripts/slave/annotated_run.py', |
| 1651 <master.master_utils.ConditionalProperty instance>, | 1193 <master.factory.commands.WithJsonProperties instance>, |
| 1652 <buildbot.process.properties.Property instance>, | 1194 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1653 <master.master_utils.ConditionalProperty instance>, | |
| 1654 <buildbot.process.properties.WithProperties instance>, | |
| 1655 ], | 1195 ], |
| 1656 'description': 'cbuildbot', | 1196 'description': 'running steps via annotated script', |
| 1197 'haltOnFailure': True, |
| 1657 'maxTime': 57600, | 1198 'maxTime': 57600, |
| 1658 'name': 'cbuildbot', | 1199 'name': 'steps', |
| 1659 'timeout': 9000, | 1200 'timeout': 9000, |
| 1660 'usePTY': False, | |
| 1661 }, | 1201 }, |
| 1662 ), | 1202 ), |
| 1663 ], | 1203 ], |
| 1664 properties: Properties(**{}), | 1204 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1665 }, | 1205 }, |
| 1666 'name': u'firmware', | 1206 'name': u'firmware', |
| 1667 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1207 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1208 'properties': {}, |
| 1668 'slavenames': [ | 1209 'slavenames': [ |
| 1669 'build275-m2', | 1210 'build275-m2', |
| 1670 'build272-m2', | 1211 'build272-m2', |
| 1671 'cros-testing3-c2', | 1212 'cros-testing3-c2', |
| 1672 'build270-m2', | 1213 'build270-m2', |
| 1673 'build274-m2', | 1214 'build274-m2', |
| 1674 'cros-testing10-c2', | 1215 'cros-testing10-c2', |
| 1675 'cros-testing6-c2', | 1216 'cros-testing6-c2', |
| 1676 'build266-m2', | 1217 'build266-m2', |
| 1677 'cros-testing4-c2', | 1218 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1691 'cros-testing1-c2', | 1232 'cros-testing1-c2', |
| 1692 'cros-testing9-c2', | 1233 'cros-testing9-c2', |
| 1693 ], | 1234 ], |
| 1694 }, | 1235 }, |
| 1695 { | 1236 { |
| 1696 'builddir': u'full', | 1237 'builddir': u'full', |
| 1697 'category': '3general full|info', | 1238 'category': '3general full|info', |
| 1698 'factory': BuildFactory { | 1239 'factory': BuildFactory { |
| 1699 steps: [ | 1240 steps: [ |
| 1700 ( | 1241 ( |
| 1701 <class buildbot.steps.shell.ShellCommand>, | |
| 1702 { | |
| 1703 'command': [ | |
| 1704 'gclient', | |
| 1705 'sync', | |
| 1706 '--verbose', | |
| 1707 '--force', | |
| 1708 '--delete_unversioned_trees', | |
| 1709 ], | |
| 1710 'description': 'Sync buildbot slave files', | |
| 1711 'name': 'update_scripts', | |
| 1712 'timeout': 300, | |
| 1713 'want_stderr': True, | |
| 1714 'want_stdout': True, | |
| 1715 'workdir': '/b', | |
| 1716 }, | |
| 1717 ), | |
| 1718 ( | |
| 1719 <class buildbot.steps.shell.ShellCommand>, | |
| 1720 { | |
| 1721 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 1722 'description': 'Clear and Clone chromite', | |
| 1723 'haltOnFailure': True, | |
| 1724 'name': 'Clear and Clone chromite', | |
| 1725 }, | |
| 1726 ), | |
| 1727 ( | |
| 1728 <class master.chromium_step.AnnotatedCommand>, | 1242 <class master.chromium_step.AnnotatedCommand>, |
| 1729 { | 1243 { |
| 1244 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1730 'command': [ | 1245 'command': [ |
| 1731 'chromite/bin/cbuildbot', | 1246 'python', |
| 1732 <buildbot.process.properties.WithProperties instance>, | 1247 '-u', |
| 1733 <master.master_utils.ConditionalProperty instance>, | 1248 '../../../scripts/slave/annotated_run.py', |
| 1734 <master.master_utils.ConditionalProperty instance>, | 1249 <master.factory.commands.WithJsonProperties instance>, |
| 1735 <buildbot.process.properties.Property instance>, | 1250 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1736 <master.master_utils.ConditionalProperty instance>, | |
| 1737 <buildbot.process.properties.WithProperties instance>, | |
| 1738 ], | 1251 ], |
| 1739 'description': 'cbuildbot', | 1252 'description': 'running steps via annotated script', |
| 1253 'haltOnFailure': True, |
| 1740 'maxTime': 57600, | 1254 'maxTime': 57600, |
| 1741 'name': 'cbuildbot', | 1255 'name': 'steps', |
| 1742 'timeout': 9000, | 1256 'timeout': 9000, |
| 1743 'usePTY': False, | |
| 1744 }, | 1257 }, |
| 1745 ), | 1258 ), |
| 1746 ], | 1259 ], |
| 1747 properties: Properties(**{}), | 1260 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1748 }, | 1261 }, |
| 1749 'name': u'full', | 1262 'name': u'full', |
| 1750 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1263 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1264 'properties': {}, |
| 1751 'slavenames': [ | 1265 'slavenames': [ |
| 1752 'build275-m2', | 1266 'build275-m2', |
| 1753 'build272-m2', | 1267 'build272-m2', |
| 1754 'cros-testing3-c2', | 1268 'cros-testing3-c2', |
| 1755 'build270-m2', | 1269 'build270-m2', |
| 1756 'build274-m2', | 1270 'build274-m2', |
| 1757 'cros-testing10-c2', | 1271 'cros-testing10-c2', |
| 1758 'cros-testing6-c2', | 1272 'cros-testing6-c2', |
| 1759 'build266-m2', | 1273 'build266-m2', |
| 1760 'cros-testing4-c2', | 1274 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1774 'cros-testing1-c2', | 1288 'cros-testing1-c2', |
| 1775 'cros-testing9-c2', | 1289 'cros-testing9-c2', |
| 1776 ], | 1290 ], |
| 1777 }, | 1291 }, |
| 1778 { | 1292 { |
| 1779 'builddir': u'incremental', | 1293 'builddir': u'incremental', |
| 1780 'category': '3general full|info', | 1294 'category': '3general full|info', |
| 1781 'factory': BuildFactory { | 1295 'factory': BuildFactory { |
| 1782 steps: [ | 1296 steps: [ |
| 1783 ( | 1297 ( |
| 1784 <class buildbot.steps.shell.ShellCommand>, | |
| 1785 { | |
| 1786 'command': [ | |
| 1787 'gclient', | |
| 1788 'sync', | |
| 1789 '--verbose', | |
| 1790 '--force', | |
| 1791 '--delete_unversioned_trees', | |
| 1792 ], | |
| 1793 'description': 'Sync buildbot slave files', | |
| 1794 'name': 'update_scripts', | |
| 1795 'timeout': 300, | |
| 1796 'want_stderr': True, | |
| 1797 'want_stdout': True, | |
| 1798 'workdir': '/b', | |
| 1799 }, | |
| 1800 ), | |
| 1801 ( | |
| 1802 <class buildbot.steps.shell.ShellCommand>, | |
| 1803 { | |
| 1804 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 1805 'description': 'Clear and Clone chromite', | |
| 1806 'haltOnFailure': True, | |
| 1807 'name': 'Clear and Clone chromite', | |
| 1808 }, | |
| 1809 ), | |
| 1810 ( | |
| 1811 <class master.chromium_step.AnnotatedCommand>, | 1298 <class master.chromium_step.AnnotatedCommand>, |
| 1812 { | 1299 { |
| 1300 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1813 'command': [ | 1301 'command': [ |
| 1814 'chromite/bin/cbuildbot', | 1302 'python', |
| 1815 <buildbot.process.properties.WithProperties instance>, | 1303 '-u', |
| 1816 <master.master_utils.ConditionalProperty instance>, | 1304 '../../../scripts/slave/annotated_run.py', |
| 1817 <master.master_utils.ConditionalProperty instance>, | 1305 <master.factory.commands.WithJsonProperties instance>, |
| 1818 <buildbot.process.properties.Property instance>, | 1306 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1819 <master.master_utils.ConditionalProperty instance>, | |
| 1820 <buildbot.process.properties.WithProperties instance>, | |
| 1821 ], | 1307 ], |
| 1822 'description': 'cbuildbot', | 1308 'description': 'running steps via annotated script', |
| 1309 'haltOnFailure': True, |
| 1823 'maxTime': 57600, | 1310 'maxTime': 57600, |
| 1824 'name': 'cbuildbot', | 1311 'name': 'steps', |
| 1825 'timeout': 9000, | 1312 'timeout': 9000, |
| 1826 'usePTY': False, | |
| 1827 }, | 1313 }, |
| 1828 ), | 1314 ), |
| 1829 ], | 1315 ], |
| 1830 properties: Properties(**{}), | 1316 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1831 }, | 1317 }, |
| 1832 'name': u'incremental', | 1318 'name': u'incremental', |
| 1833 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1319 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1320 'properties': {}, |
| 1834 'slavenames': [ | 1321 'slavenames': [ |
| 1835 'build275-m2', | 1322 'build275-m2', |
| 1836 'build272-m2', | 1323 'build272-m2', |
| 1837 'cros-testing3-c2', | 1324 'cros-testing3-c2', |
| 1838 'build270-m2', | 1325 'build270-m2', |
| 1839 'build274-m2', | 1326 'build274-m2', |
| 1840 'cros-testing10-c2', | 1327 'cros-testing10-c2', |
| 1841 'cros-testing6-c2', | 1328 'cros-testing6-c2', |
| 1842 'build266-m2', | 1329 'build266-m2', |
| 1843 'cros-testing4-c2', | 1330 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1857 'cros-testing1-c2', | 1344 'cros-testing1-c2', |
| 1858 'cros-testing9-c2', | 1345 'cros-testing9-c2', |
| 1859 ], | 1346 ], |
| 1860 }, | 1347 }, |
| 1861 { | 1348 { |
| 1862 'builddir': u'internal-toolchain-major', | 1349 'builddir': u'internal-toolchain-major', |
| 1863 'category': '3general full|info', | 1350 'category': '3general full|info', |
| 1864 'factory': BuildFactory { | 1351 'factory': BuildFactory { |
| 1865 steps: [ | 1352 steps: [ |
| 1866 ( | 1353 ( |
| 1867 <class buildbot.steps.shell.ShellCommand>, | |
| 1868 { | |
| 1869 'command': [ | |
| 1870 'gclient', | |
| 1871 'sync', | |
| 1872 '--verbose', | |
| 1873 '--force', | |
| 1874 '--delete_unversioned_trees', | |
| 1875 ], | |
| 1876 'description': 'Sync buildbot slave files', | |
| 1877 'name': 'update_scripts', | |
| 1878 'timeout': 300, | |
| 1879 'want_stderr': True, | |
| 1880 'want_stdout': True, | |
| 1881 'workdir': '/b', | |
| 1882 }, | |
| 1883 ), | |
| 1884 ( | |
| 1885 <class buildbot.steps.shell.ShellCommand>, | |
| 1886 { | |
| 1887 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 1888 'description': 'Clear and Clone chromite', | |
| 1889 'haltOnFailure': True, | |
| 1890 'name': 'Clear and Clone chromite', | |
| 1891 }, | |
| 1892 ), | |
| 1893 ( | |
| 1894 <class master.chromium_step.AnnotatedCommand>, | 1354 <class master.chromium_step.AnnotatedCommand>, |
| 1895 { | 1355 { |
| 1356 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1896 'command': [ | 1357 'command': [ |
| 1897 'chromite/bin/cbuildbot', | 1358 'python', |
| 1898 <buildbot.process.properties.WithProperties instance>, | 1359 '-u', |
| 1899 <master.master_utils.ConditionalProperty instance>, | 1360 '../../../scripts/slave/annotated_run.py', |
| 1900 <master.master_utils.ConditionalProperty instance>, | 1361 <master.factory.commands.WithJsonProperties instance>, |
| 1901 <buildbot.process.properties.Property instance>, | 1362 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1902 <master.master_utils.ConditionalProperty instance>, | |
| 1903 <buildbot.process.properties.WithProperties instance>, | |
| 1904 ], | 1363 ], |
| 1905 'description': 'cbuildbot', | 1364 'description': 'running steps via annotated script', |
| 1365 'haltOnFailure': True, |
| 1906 'maxTime': 57600, | 1366 'maxTime': 57600, |
| 1907 'name': 'cbuildbot', | 1367 'name': 'steps', |
| 1908 'timeout': 9000, | 1368 'timeout': 9000, |
| 1909 'usePTY': False, | |
| 1910 }, | 1369 }, |
| 1911 ), | 1370 ), |
| 1912 ], | 1371 ], |
| 1913 properties: Properties(**{}), | 1372 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1914 }, | 1373 }, |
| 1915 'name': u'internal-toolchain-major', | 1374 'name': u'internal-toolchain-major', |
| 1916 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1375 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1376 'properties': {}, |
| 1917 'slavenames': [ | 1377 'slavenames': [ |
| 1918 'build275-m2', | 1378 'build275-m2', |
| 1919 'build272-m2', | 1379 'build272-m2', |
| 1920 'cros-testing3-c2', | 1380 'cros-testing3-c2', |
| 1921 'build270-m2', | 1381 'build270-m2', |
| 1922 'build274-m2', | 1382 'build274-m2', |
| 1923 'cros-testing10-c2', | 1383 'cros-testing10-c2', |
| 1924 'cros-testing6-c2', | 1384 'cros-testing6-c2', |
| 1925 'build266-m2', | 1385 'build266-m2', |
| 1926 'cros-testing4-c2', | 1386 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1940 'cros-testing1-c2', | 1400 'cros-testing1-c2', |
| 1941 'cros-testing9-c2', | 1401 'cros-testing9-c2', |
| 1942 ], | 1402 ], |
| 1943 }, | 1403 }, |
| 1944 { | 1404 { |
| 1945 'builddir': u'internal-toolchain-minor', | 1405 'builddir': u'internal-toolchain-minor', |
| 1946 'category': '3general full|info', | 1406 'category': '3general full|info', |
| 1947 'factory': BuildFactory { | 1407 'factory': BuildFactory { |
| 1948 steps: [ | 1408 steps: [ |
| 1949 ( | 1409 ( |
| 1950 <class buildbot.steps.shell.ShellCommand>, | |
| 1951 { | |
| 1952 'command': [ | |
| 1953 'gclient', | |
| 1954 'sync', | |
| 1955 '--verbose', | |
| 1956 '--force', | |
| 1957 '--delete_unversioned_trees', | |
| 1958 ], | |
| 1959 'description': 'Sync buildbot slave files', | |
| 1960 'name': 'update_scripts', | |
| 1961 'timeout': 300, | |
| 1962 'want_stderr': True, | |
| 1963 'want_stdout': True, | |
| 1964 'workdir': '/b', | |
| 1965 }, | |
| 1966 ), | |
| 1967 ( | |
| 1968 <class buildbot.steps.shell.ShellCommand>, | |
| 1969 { | |
| 1970 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 1971 'description': 'Clear and Clone chromite', | |
| 1972 'haltOnFailure': True, | |
| 1973 'name': 'Clear and Clone chromite', | |
| 1974 }, | |
| 1975 ), | |
| 1976 ( | |
| 1977 <class master.chromium_step.AnnotatedCommand>, | 1410 <class master.chromium_step.AnnotatedCommand>, |
| 1978 { | 1411 { |
| 1412 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1979 'command': [ | 1413 'command': [ |
| 1980 'chromite/bin/cbuildbot', | 1414 'python', |
| 1981 <buildbot.process.properties.WithProperties instance>, | 1415 '-u', |
| 1982 <master.master_utils.ConditionalProperty instance>, | 1416 '../../../scripts/slave/annotated_run.py', |
| 1983 <master.master_utils.ConditionalProperty instance>, | 1417 <master.factory.commands.WithJsonProperties instance>, |
| 1984 <buildbot.process.properties.Property instance>, | 1418 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1985 <master.master_utils.ConditionalProperty instance>, | |
| 1986 <buildbot.process.properties.WithProperties instance>, | |
| 1987 ], | 1419 ], |
| 1988 'description': 'cbuildbot', | 1420 'description': 'running steps via annotated script', |
| 1421 'haltOnFailure': True, |
| 1989 'maxTime': 57600, | 1422 'maxTime': 57600, |
| 1990 'name': 'cbuildbot', | 1423 'name': 'steps', |
| 1991 'timeout': 9000, | 1424 'timeout': 9000, |
| 1992 'usePTY': False, | |
| 1993 }, | 1425 }, |
| 1994 ), | 1426 ), |
| 1995 ], | 1427 ], |
| 1996 properties: Properties(**{}), | 1428 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1997 }, | 1429 }, |
| 1998 'name': u'internal-toolchain-minor', | 1430 'name': u'internal-toolchain-minor', |
| 1999 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1431 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1432 'properties': {}, |
| 2000 'slavenames': [ | 1433 'slavenames': [ |
| 2001 'build275-m2', | 1434 'build275-m2', |
| 2002 'build272-m2', | 1435 'build272-m2', |
| 2003 'cros-testing3-c2', | 1436 'cros-testing3-c2', |
| 2004 'build270-m2', | 1437 'build270-m2', |
| 2005 'build274-m2', | 1438 'build274-m2', |
| 2006 'cros-testing10-c2', | 1439 'cros-testing10-c2', |
| 2007 'cros-testing6-c2', | 1440 'cros-testing6-c2', |
| 2008 'build266-m2', | 1441 'build266-m2', |
| 2009 'cros-testing4-c2', | 1442 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 2023 'cros-testing1-c2', | 1456 'cros-testing1-c2', |
| 2024 'cros-testing9-c2', | 1457 'cros-testing9-c2', |
| 2025 ], | 1458 ], |
| 2026 }, | 1459 }, |
| 2027 { | 1460 { |
| 2028 'builddir': u'llvm', | 1461 'builddir': u'llvm', |
| 2029 'category': '3general full|info', | 1462 'category': '3general full|info', |
| 2030 'factory': BuildFactory { | 1463 'factory': BuildFactory { |
| 2031 steps: [ | 1464 steps: [ |
| 2032 ( | 1465 ( |
| 2033 <class buildbot.steps.shell.ShellCommand>, | |
| 2034 { | |
| 2035 'command': [ | |
| 2036 'gclient', | |
| 2037 'sync', | |
| 2038 '--verbose', | |
| 2039 '--force', | |
| 2040 '--delete_unversioned_trees', | |
| 2041 ], | |
| 2042 'description': 'Sync buildbot slave files', | |
| 2043 'name': 'update_scripts', | |
| 2044 'timeout': 300, | |
| 2045 'want_stderr': True, | |
| 2046 'want_stdout': True, | |
| 2047 'workdir': '/b', | |
| 2048 }, | |
| 2049 ), | |
| 2050 ( | |
| 2051 <class buildbot.steps.shell.ShellCommand>, | |
| 2052 { | |
| 2053 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 2054 'description': 'Clear and Clone chromite', | |
| 2055 'haltOnFailure': True, | |
| 2056 'name': 'Clear and Clone chromite', | |
| 2057 }, | |
| 2058 ), | |
| 2059 ( | |
| 2060 <class master.chromium_step.AnnotatedCommand>, | 1466 <class master.chromium_step.AnnotatedCommand>, |
| 2061 { | 1467 { |
| 1468 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2062 'command': [ | 1469 'command': [ |
| 2063 'chromite/bin/cbuildbot', | 1470 'python', |
| 2064 <buildbot.process.properties.WithProperties instance>, | 1471 '-u', |
| 2065 <master.master_utils.ConditionalProperty instance>, | 1472 '../../../scripts/slave/annotated_run.py', |
| 2066 <master.master_utils.ConditionalProperty instance>, | 1473 <master.factory.commands.WithJsonProperties instance>, |
| 2067 <buildbot.process.properties.Property instance>, | 1474 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2068 <master.master_utils.ConditionalProperty instance>, | |
| 2069 <buildbot.process.properties.WithProperties instance>, | |
| 2070 ], | 1475 ], |
| 2071 'description': 'cbuildbot', | 1476 'description': 'running steps via annotated script', |
| 1477 'haltOnFailure': True, |
| 2072 'maxTime': 57600, | 1478 'maxTime': 57600, |
| 2073 'name': 'cbuildbot', | 1479 'name': 'steps', |
| 2074 'timeout': 9000, | 1480 'timeout': 9000, |
| 2075 'usePTY': False, | |
| 2076 }, | 1481 }, |
| 2077 ), | 1482 ), |
| 2078 ], | 1483 ], |
| 2079 properties: Properties(**{}), | 1484 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2080 }, | 1485 }, |
| 2081 'name': u'llvm', | 1486 'name': u'llvm', |
| 2082 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1487 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1488 'properties': {}, |
| 2083 'slavenames': [ | 1489 'slavenames': [ |
| 2084 'build275-m2', | 1490 'build275-m2', |
| 2085 'build272-m2', | 1491 'build272-m2', |
| 2086 'cros-testing3-c2', | 1492 'cros-testing3-c2', |
| 2087 'build270-m2', | 1493 'build270-m2', |
| 2088 'build274-m2', | 1494 'build274-m2', |
| 2089 'cros-testing10-c2', | 1495 'cros-testing10-c2', |
| 2090 'cros-testing6-c2', | 1496 'cros-testing6-c2', |
| 2091 'build266-m2', | 1497 'build266-m2', |
| 2092 'cros-testing4-c2', | 1498 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 2106 'cros-testing1-c2', | 1512 'cros-testing1-c2', |
| 2107 'cros-testing9-c2', | 1513 'cros-testing9-c2', |
| 2108 ], | 1514 ], |
| 2109 }, | 1515 }, |
| 2110 { | 1516 { |
| 2111 'builddir': u'paladin', | 1517 'builddir': u'paladin', |
| 2112 'category': '3general full|info', | 1518 'category': '3general full|info', |
| 2113 'factory': BuildFactory { | 1519 'factory': BuildFactory { |
| 2114 steps: [ | 1520 steps: [ |
| 2115 ( | 1521 ( |
| 2116 <class buildbot.steps.shell.ShellCommand>, | |
| 2117 { | |
| 2118 'command': [ | |
| 2119 'gclient', | |
| 2120 'sync', | |
| 2121 '--verbose', | |
| 2122 '--force', | |
| 2123 '--delete_unversioned_trees', | |
| 2124 ], | |
| 2125 'description': 'Sync buildbot slave files', | |
| 2126 'name': 'update_scripts', | |
| 2127 'timeout': 300, | |
| 2128 'want_stderr': True, | |
| 2129 'want_stdout': True, | |
| 2130 'workdir': '/b', | |
| 2131 }, | |
| 2132 ), | |
| 2133 ( | |
| 2134 <class buildbot.steps.shell.ShellCommand>, | |
| 2135 { | |
| 2136 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 2137 'description': 'Clear and Clone chromite', | |
| 2138 'haltOnFailure': True, | |
| 2139 'name': 'Clear and Clone chromite', | |
| 2140 }, | |
| 2141 ), | |
| 2142 ( | |
| 2143 <class master.chromium_step.AnnotatedCommand>, | 1522 <class master.chromium_step.AnnotatedCommand>, |
| 2144 { | 1523 { |
| 1524 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2145 'command': [ | 1525 'command': [ |
| 2146 'chromite/bin/cbuildbot', | 1526 'python', |
| 2147 <buildbot.process.properties.WithProperties instance>, | 1527 '-u', |
| 2148 <master.master_utils.ConditionalProperty instance>, | 1528 '../../../scripts/slave/annotated_run.py', |
| 2149 <master.master_utils.ConditionalProperty instance>, | 1529 <master.factory.commands.WithJsonProperties instance>, |
| 2150 <buildbot.process.properties.Property instance>, | 1530 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2151 <master.master_utils.ConditionalProperty instance>, | |
| 2152 <buildbot.process.properties.WithProperties instance>, | |
| 2153 ], | 1531 ], |
| 2154 'description': 'cbuildbot', | 1532 'description': 'running steps via annotated script', |
| 1533 'haltOnFailure': True, |
| 2155 'maxTime': 57600, | 1534 'maxTime': 57600, |
| 2156 'name': 'cbuildbot', | 1535 'name': 'steps', |
| 2157 'timeout': 9000, | 1536 'timeout': 9000, |
| 2158 'usePTY': False, | |
| 2159 }, | 1537 }, |
| 2160 ), | 1538 ), |
| 2161 ], | 1539 ], |
| 2162 properties: Properties(**{}), | 1540 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2163 }, | 1541 }, |
| 2164 'name': u'paladin', | 1542 'name': u'paladin', |
| 2165 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1543 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1544 'properties': {}, |
| 2166 'slavenames': [ | 1545 'slavenames': [ |
| 2167 'build275-m2', | 1546 'build275-m2', |
| 2168 'build272-m2', | 1547 'build272-m2', |
| 2169 'cros-testing3-c2', | 1548 'cros-testing3-c2', |
| 2170 'build270-m2', | 1549 'build270-m2', |
| 2171 'build274-m2', | 1550 'build274-m2', |
| 2172 'cros-testing10-c2', | 1551 'cros-testing10-c2', |
| 2173 'cros-testing6-c2', | 1552 'cros-testing6-c2', |
| 2174 'build266-m2', | 1553 'build266-m2', |
| 2175 'cros-testing4-c2', | 1554 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 2189 'cros-testing1-c2', | 1568 'cros-testing1-c2', |
| 2190 'cros-testing9-c2', | 1569 'cros-testing9-c2', |
| 2191 ], | 1570 ], |
| 2192 }, | 1571 }, |
| 2193 { | 1572 { |
| 2194 'builddir': u'payloads', | 1573 'builddir': u'payloads', |
| 2195 'category': '3general full|info', | 1574 'category': '3general full|info', |
| 2196 'factory': BuildFactory { | 1575 'factory': BuildFactory { |
| 2197 steps: [ | 1576 steps: [ |
| 2198 ( | 1577 ( |
| 2199 <class buildbot.steps.shell.ShellCommand>, | |
| 2200 { | |
| 2201 'command': [ | |
| 2202 'gclient', | |
| 2203 'sync', | |
| 2204 '--verbose', | |
| 2205 '--force', | |
| 2206 '--delete_unversioned_trees', | |
| 2207 ], | |
| 2208 'description': 'Sync buildbot slave files', | |
| 2209 'name': 'update_scripts', | |
| 2210 'timeout': 300, | |
| 2211 'want_stderr': True, | |
| 2212 'want_stdout': True, | |
| 2213 'workdir': '/b', | |
| 2214 }, | |
| 2215 ), | |
| 2216 ( | |
| 2217 <class buildbot.steps.shell.ShellCommand>, | |
| 2218 { | |
| 2219 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 2220 'description': 'Clear and Clone chromite', | |
| 2221 'haltOnFailure': True, | |
| 2222 'name': 'Clear and Clone chromite', | |
| 2223 }, | |
| 2224 ), | |
| 2225 ( | |
| 2226 <class master.chromium_step.AnnotatedCommand>, | 1578 <class master.chromium_step.AnnotatedCommand>, |
| 2227 { | 1579 { |
| 1580 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2228 'command': [ | 1581 'command': [ |
| 2229 'chromite/bin/cbuildbot', | 1582 'python', |
| 2230 <buildbot.process.properties.WithProperties instance>, | 1583 '-u', |
| 2231 <master.master_utils.ConditionalProperty instance>, | 1584 '../../../scripts/slave/annotated_run.py', |
| 2232 <master.master_utils.ConditionalProperty instance>, | 1585 <master.factory.commands.WithJsonProperties instance>, |
| 2233 <buildbot.process.properties.Property instance>, | 1586 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2234 <master.master_utils.ConditionalProperty instance>, | |
| 2235 <buildbot.process.properties.WithProperties instance>, | |
| 2236 ], | 1587 ], |
| 2237 'description': 'cbuildbot', | 1588 'description': 'running steps via annotated script', |
| 1589 'haltOnFailure': True, |
| 2238 'maxTime': 57600, | 1590 'maxTime': 57600, |
| 2239 'name': 'cbuildbot', | 1591 'name': 'steps', |
| 2240 'timeout': 9000, | 1592 'timeout': 9000, |
| 2241 'usePTY': False, | |
| 2242 }, | 1593 }, |
| 2243 ), | 1594 ), |
| 2244 ], | 1595 ], |
| 2245 properties: Properties(**{}), | 1596 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2246 }, | 1597 }, |
| 2247 'name': u'payloads', | 1598 'name': u'payloads', |
| 2248 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1599 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1600 'properties': {}, |
| 2249 'slavenames': [ | 1601 'slavenames': [ |
| 2250 'build275-m2', | 1602 'build275-m2', |
| 2251 'build272-m2', | 1603 'build272-m2', |
| 2252 'cros-testing3-c2', | 1604 'cros-testing3-c2', |
| 2253 'build270-m2', | 1605 'build270-m2', |
| 2254 'build274-m2', | 1606 'build274-m2', |
| 2255 'cros-testing10-c2', | 1607 'cros-testing10-c2', |
| 2256 'cros-testing6-c2', | 1608 'cros-testing6-c2', |
| 2257 'build266-m2', | 1609 'build266-m2', |
| 2258 'cros-testing4-c2', | 1610 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 2272 'cros-testing1-c2', | 1624 'cros-testing1-c2', |
| 2273 'cros-testing9-c2', | 1625 'cros-testing9-c2', |
| 2274 ], | 1626 ], |
| 2275 }, | 1627 }, |
| 2276 { | 1628 { |
| 2277 'builddir': u'pre-cq-launcher', | 1629 'builddir': u'pre-cq-launcher', |
| 2278 'category': '3general full|info', | 1630 'category': '3general full|info', |
| 2279 'factory': BuildFactory { | 1631 'factory': BuildFactory { |
| 2280 steps: [ | 1632 steps: [ |
| 2281 ( | 1633 ( |
| 2282 <class buildbot.steps.shell.ShellCommand>, | |
| 2283 { | |
| 2284 'command': [ | |
| 2285 'gclient', | |
| 2286 'sync', | |
| 2287 '--verbose', | |
| 2288 '--force', | |
| 2289 '--delete_unversioned_trees', | |
| 2290 ], | |
| 2291 'description': 'Sync buildbot slave files', | |
| 2292 'name': 'update_scripts', | |
| 2293 'timeout': 300, | |
| 2294 'want_stderr': True, | |
| 2295 'want_stdout': True, | |
| 2296 'workdir': '/b', | |
| 2297 }, | |
| 2298 ), | |
| 2299 ( | |
| 2300 <class buildbot.steps.shell.ShellCommand>, | |
| 2301 { | |
| 2302 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 2303 'description': 'Clear and Clone chromite', | |
| 2304 'haltOnFailure': True, | |
| 2305 'name': 'Clear and Clone chromite', | |
| 2306 }, | |
| 2307 ), | |
| 2308 ( | |
| 2309 <class master.chromium_step.AnnotatedCommand>, | 1634 <class master.chromium_step.AnnotatedCommand>, |
| 2310 { | 1635 { |
| 1636 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2311 'command': [ | 1637 'command': [ |
| 2312 'chromite/bin/cbuildbot', | 1638 'python', |
| 2313 <buildbot.process.properties.WithProperties instance>, | 1639 '-u', |
| 2314 <master.master_utils.ConditionalProperty instance>, | 1640 '../../../scripts/slave/annotated_run.py', |
| 2315 <master.master_utils.ConditionalProperty instance>, | 1641 <master.factory.commands.WithJsonProperties instance>, |
| 2316 <buildbot.process.properties.Property instance>, | 1642 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2317 <master.master_utils.ConditionalProperty instance>, | |
| 2318 <buildbot.process.properties.WithProperties instance>, | |
| 2319 ], | 1643 ], |
| 2320 'description': 'cbuildbot', | 1644 'description': 'running steps via annotated script', |
| 1645 'haltOnFailure': True, |
| 2321 'maxTime': 57600, | 1646 'maxTime': 57600, |
| 2322 'name': 'cbuildbot', | 1647 'name': 'steps', |
| 2323 'timeout': 9000, | 1648 'timeout': 9000, |
| 2324 'usePTY': False, | |
| 2325 }, | 1649 }, |
| 2326 ), | 1650 ), |
| 2327 ], | 1651 ], |
| 2328 properties: Properties(**{}), | 1652 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2329 }, | 1653 }, |
| 2330 'name': u'pre-cq-launcher', | 1654 'name': u'pre-cq-launcher', |
| 2331 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1655 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1656 'properties': {}, |
| 2332 'slavenames': [ | 1657 'slavenames': [ |
| 2333 'build275-m2', | 1658 'build275-m2', |
| 2334 'build272-m2', | 1659 'build272-m2', |
| 2335 'cros-testing3-c2', | 1660 'cros-testing3-c2', |
| 2336 'build270-m2', | 1661 'build270-m2', |
| 2337 'build274-m2', | 1662 'build274-m2', |
| 2338 'cros-testing10-c2', | 1663 'cros-testing10-c2', |
| 2339 'cros-testing6-c2', | 1664 'cros-testing6-c2', |
| 2340 'build266-m2', | 1665 'build266-m2', |
| 2341 'cros-testing4-c2', | 1666 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 2355 'cros-testing1-c2', | 1680 'cros-testing1-c2', |
| 2356 'cros-testing9-c2', | 1681 'cros-testing9-c2', |
| 2357 ], | 1682 ], |
| 2358 }, | 1683 }, |
| 2359 { | 1684 { |
| 2360 'builddir': u'pre-flight-branch', | 1685 'builddir': u'pre-flight-branch', |
| 2361 'category': '3general full|info', | 1686 'category': '3general full|info', |
| 2362 'factory': BuildFactory { | 1687 'factory': BuildFactory { |
| 2363 steps: [ | 1688 steps: [ |
| 2364 ( | 1689 ( |
| 2365 <class buildbot.steps.shell.ShellCommand>, | |
| 2366 { | |
| 2367 'command': [ | |
| 2368 'gclient', | |
| 2369 'sync', | |
| 2370 '--verbose', | |
| 2371 '--force', | |
| 2372 '--delete_unversioned_trees', | |
| 2373 ], | |
| 2374 'description': 'Sync buildbot slave files', | |
| 2375 'name': 'update_scripts', | |
| 2376 'timeout': 300, | |
| 2377 'want_stderr': True, | |
| 2378 'want_stdout': True, | |
| 2379 'workdir': '/b', | |
| 2380 }, | |
| 2381 ), | |
| 2382 ( | |
| 2383 <class buildbot.steps.shell.ShellCommand>, | |
| 2384 { | |
| 2385 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 2386 'description': 'Clear and Clone chromite', | |
| 2387 'haltOnFailure': True, | |
| 2388 'name': 'Clear and Clone chromite', | |
| 2389 }, | |
| 2390 ), | |
| 2391 ( | |
| 2392 <class master.chromium_step.AnnotatedCommand>, | 1690 <class master.chromium_step.AnnotatedCommand>, |
| 2393 { | 1691 { |
| 1692 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2394 'command': [ | 1693 'command': [ |
| 2395 'chromite/bin/cbuildbot', | 1694 'python', |
| 2396 <buildbot.process.properties.WithProperties instance>, | 1695 '-u', |
| 2397 <master.master_utils.ConditionalProperty instance>, | 1696 '../../../scripts/slave/annotated_run.py', |
| 2398 <master.master_utils.ConditionalProperty instance>, | 1697 <master.factory.commands.WithJsonProperties instance>, |
| 2399 <buildbot.process.properties.Property instance>, | 1698 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2400 <master.master_utils.ConditionalProperty instance>, | |
| 2401 <buildbot.process.properties.WithProperties instance>, | |
| 2402 ], | 1699 ], |
| 2403 'description': 'cbuildbot', | 1700 'description': 'running steps via annotated script', |
| 1701 'haltOnFailure': True, |
| 2404 'maxTime': 57600, | 1702 'maxTime': 57600, |
| 2405 'name': 'cbuildbot', | 1703 'name': 'steps', |
| 2406 'timeout': 9000, | 1704 'timeout': 9000, |
| 2407 'usePTY': False, | |
| 2408 }, | 1705 }, |
| 2409 ), | 1706 ), |
| 2410 ], | 1707 ], |
| 2411 properties: Properties(**{}), | 1708 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2412 }, | 1709 }, |
| 2413 'name': u'pre-flight-branch', | 1710 'name': u'pre-flight-branch', |
| 2414 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1711 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1712 'properties': {}, |
| 2415 'slavenames': [ | 1713 'slavenames': [ |
| 2416 'build275-m2', | 1714 'build275-m2', |
| 2417 'build272-m2', | 1715 'build272-m2', |
| 2418 'cros-testing3-c2', | 1716 'cros-testing3-c2', |
| 2419 'build270-m2', | 1717 'build270-m2', |
| 2420 'build274-m2', | 1718 'build274-m2', |
| 2421 'cros-testing10-c2', | 1719 'cros-testing10-c2', |
| 2422 'cros-testing6-c2', | 1720 'cros-testing6-c2', |
| 2423 'build266-m2', | 1721 'build266-m2', |
| 2424 'cros-testing4-c2', | 1722 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 2438 'cros-testing1-c2', | 1736 'cros-testing1-c2', |
| 2439 'cros-testing9-c2', | 1737 'cros-testing9-c2', |
| 2440 ], | 1738 ], |
| 2441 }, | 1739 }, |
| 2442 { | 1740 { |
| 2443 'builddir': u'refresh-packages', | 1741 'builddir': u'refresh-packages', |
| 2444 'category': '3general full|info', | 1742 'category': '3general full|info', |
| 2445 'factory': BuildFactory { | 1743 'factory': BuildFactory { |
| 2446 steps: [ | 1744 steps: [ |
| 2447 ( | 1745 ( |
| 2448 <class buildbot.steps.shell.ShellCommand>, | |
| 2449 { | |
| 2450 'command': [ | |
| 2451 'gclient', | |
| 2452 'sync', | |
| 2453 '--verbose', | |
| 2454 '--force', | |
| 2455 '--delete_unversioned_trees', | |
| 2456 ], | |
| 2457 'description': 'Sync buildbot slave files', | |
| 2458 'name': 'update_scripts', | |
| 2459 'timeout': 300, | |
| 2460 'want_stderr': True, | |
| 2461 'want_stdout': True, | |
| 2462 'workdir': '/b', | |
| 2463 }, | |
| 2464 ), | |
| 2465 ( | |
| 2466 <class buildbot.steps.shell.ShellCommand>, | |
| 2467 { | |
| 2468 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 2469 'description': 'Clear and Clone chromite', | |
| 2470 'haltOnFailure': True, | |
| 2471 'name': 'Clear and Clone chromite', | |
| 2472 }, | |
| 2473 ), | |
| 2474 ( | |
| 2475 <class master.chromium_step.AnnotatedCommand>, | 1746 <class master.chromium_step.AnnotatedCommand>, |
| 2476 { | 1747 { |
| 1748 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2477 'command': [ | 1749 'command': [ |
| 2478 'chromite/bin/cbuildbot', | 1750 'python', |
| 2479 <buildbot.process.properties.WithProperties instance>, | 1751 '-u', |
| 2480 <master.master_utils.ConditionalProperty instance>, | 1752 '../../../scripts/slave/annotated_run.py', |
| 2481 <master.master_utils.ConditionalProperty instance>, | 1753 <master.factory.commands.WithJsonProperties instance>, |
| 2482 <buildbot.process.properties.Property instance>, | 1754 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2483 <master.master_utils.ConditionalProperty instance>, | |
| 2484 <buildbot.process.properties.WithProperties instance>, | |
| 2485 ], | 1755 ], |
| 2486 'description': 'cbuildbot', | 1756 'description': 'running steps via annotated script', |
| 1757 'haltOnFailure': True, |
| 2487 'maxTime': 57600, | 1758 'maxTime': 57600, |
| 2488 'name': 'cbuildbot', | 1759 'name': 'steps', |
| 2489 'timeout': 9000, | 1760 'timeout': 9000, |
| 2490 'usePTY': False, | |
| 2491 }, | 1761 }, |
| 2492 ), | 1762 ), |
| 2493 ], | 1763 ], |
| 2494 properties: Properties(**{}), | 1764 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2495 }, | 1765 }, |
| 2496 'name': u'refresh-packages', | 1766 'name': u'refresh-packages', |
| 2497 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1767 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1768 'properties': {}, |
| 2498 'slavenames': [ | 1769 'slavenames': [ |
| 2499 'build275-m2', | 1770 'build275-m2', |
| 2500 'build272-m2', | 1771 'build272-m2', |
| 2501 'cros-testing3-c2', | 1772 'cros-testing3-c2', |
| 2502 'build270-m2', | 1773 'build270-m2', |
| 2503 'build274-m2', | 1774 'build274-m2', |
| 2504 'cros-testing10-c2', | 1775 'cros-testing10-c2', |
| 2505 'cros-testing6-c2', | 1776 'cros-testing6-c2', |
| 2506 'build266-m2', | 1777 'build266-m2', |
| 2507 'cros-testing4-c2', | 1778 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 2521 'cros-testing1-c2', | 1792 'cros-testing1-c2', |
| 2522 'cros-testing9-c2', | 1793 'cros-testing9-c2', |
| 2523 ], | 1794 ], |
| 2524 }, | 1795 }, |
| 2525 { | 1796 { |
| 2526 'builddir': u'release', | 1797 'builddir': u'release', |
| 2527 'category': '3general full|info', | 1798 'category': '3general full|info', |
| 2528 'factory': BuildFactory { | 1799 'factory': BuildFactory { |
| 2529 steps: [ | 1800 steps: [ |
| 2530 ( | 1801 ( |
| 2531 <class buildbot.steps.shell.ShellCommand>, | |
| 2532 { | |
| 2533 'command': [ | |
| 2534 'gclient', | |
| 2535 'sync', | |
| 2536 '--verbose', | |
| 2537 '--force', | |
| 2538 '--delete_unversioned_trees', | |
| 2539 ], | |
| 2540 'description': 'Sync buildbot slave files', | |
| 2541 'name': 'update_scripts', | |
| 2542 'timeout': 300, | |
| 2543 'want_stderr': True, | |
| 2544 'want_stdout': True, | |
| 2545 'workdir': '/b', | |
| 2546 }, | |
| 2547 ), | |
| 2548 ( | |
| 2549 <class buildbot.steps.shell.ShellCommand>, | |
| 2550 { | |
| 2551 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 2552 'description': 'Clear and Clone chromite', | |
| 2553 'haltOnFailure': True, | |
| 2554 'name': 'Clear and Clone chromite', | |
| 2555 }, | |
| 2556 ), | |
| 2557 ( | |
| 2558 <class master.chromium_step.AnnotatedCommand>, | 1802 <class master.chromium_step.AnnotatedCommand>, |
| 2559 { | 1803 { |
| 1804 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2560 'command': [ | 1805 'command': [ |
| 2561 'chromite/bin/cbuildbot', | 1806 'python', |
| 2562 <buildbot.process.properties.WithProperties instance>, | 1807 '-u', |
| 2563 <master.master_utils.ConditionalProperty instance>, | 1808 '../../../scripts/slave/annotated_run.py', |
| 2564 <master.master_utils.ConditionalProperty instance>, | 1809 <master.factory.commands.WithJsonProperties instance>, |
| 2565 <buildbot.process.properties.Property instance>, | 1810 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2566 <master.master_utils.ConditionalProperty instance>, | |
| 2567 <buildbot.process.properties.WithProperties instance>, | |
| 2568 ], | 1811 ], |
| 2569 'description': 'cbuildbot', | 1812 'description': 'running steps via annotated script', |
| 1813 'haltOnFailure': True, |
| 2570 'maxTime': 57600, | 1814 'maxTime': 57600, |
| 2571 'name': 'cbuildbot', | 1815 'name': 'steps', |
| 2572 'timeout': 9000, | 1816 'timeout': 9000, |
| 2573 'usePTY': False, | |
| 2574 }, | 1817 }, |
| 2575 ), | 1818 ), |
| 2576 ], | 1819 ], |
| 2577 properties: Properties(**{}), | 1820 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2578 }, | 1821 }, |
| 2579 'name': u'release', | 1822 'name': u'release', |
| 2580 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1823 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1824 'properties': {}, |
| 2581 'slavenames': [ | 1825 'slavenames': [ |
| 2582 'build275-m2', | 1826 'build275-m2', |
| 2583 'build272-m2', | 1827 'build272-m2', |
| 2584 'cros-testing3-c2', | 1828 'cros-testing3-c2', |
| 2585 'build270-m2', | 1829 'build270-m2', |
| 2586 'build274-m2', | 1830 'build274-m2', |
| 2587 'cros-testing10-c2', | 1831 'cros-testing10-c2', |
| 2588 'cros-testing6-c2', | 1832 'cros-testing6-c2', |
| 2589 'build266-m2', | 1833 'build266-m2', |
| 2590 'cros-testing4-c2', | 1834 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 2604 'cros-testing1-c2', | 1848 'cros-testing1-c2', |
| 2605 'cros-testing9-c2', | 1849 'cros-testing9-c2', |
| 2606 ], | 1850 ], |
| 2607 }, | 1851 }, |
| 2608 { | 1852 { |
| 2609 'builddir': u'release-afdo-generate', | 1853 'builddir': u'release-afdo-generate', |
| 2610 'category': '3general full|info', | 1854 'category': '3general full|info', |
| 2611 'factory': BuildFactory { | 1855 'factory': BuildFactory { |
| 2612 steps: [ | 1856 steps: [ |
| 2613 ( | 1857 ( |
| 2614 <class buildbot.steps.shell.ShellCommand>, | |
| 2615 { | |
| 2616 'command': [ | |
| 2617 'gclient', | |
| 2618 'sync', | |
| 2619 '--verbose', | |
| 2620 '--force', | |
| 2621 '--delete_unversioned_trees', | |
| 2622 ], | |
| 2623 'description': 'Sync buildbot slave files', | |
| 2624 'name': 'update_scripts', | |
| 2625 'timeout': 300, | |
| 2626 'want_stderr': True, | |
| 2627 'want_stdout': True, | |
| 2628 'workdir': '/b', | |
| 2629 }, | |
| 2630 ), | |
| 2631 ( | |
| 2632 <class buildbot.steps.shell.ShellCommand>, | |
| 2633 { | |
| 2634 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 2635 'description': 'Clear and Clone chromite', | |
| 2636 'haltOnFailure': True, | |
| 2637 'name': 'Clear and Clone chromite', | |
| 2638 }, | |
| 2639 ), | |
| 2640 ( | |
| 2641 <class master.chromium_step.AnnotatedCommand>, | 1858 <class master.chromium_step.AnnotatedCommand>, |
| 2642 { | 1859 { |
| 1860 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2643 'command': [ | 1861 'command': [ |
| 2644 'chromite/bin/cbuildbot', | 1862 'python', |
| 2645 <buildbot.process.properties.WithProperties instance>, | 1863 '-u', |
| 2646 <master.master_utils.ConditionalProperty instance>, | 1864 '../../../scripts/slave/annotated_run.py', |
| 2647 <master.master_utils.ConditionalProperty instance>, | 1865 <master.factory.commands.WithJsonProperties instance>, |
| 2648 <buildbot.process.properties.Property instance>, | 1866 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2649 <master.master_utils.ConditionalProperty instance>, | |
| 2650 <buildbot.process.properties.WithProperties instance>, | |
| 2651 ], | 1867 ], |
| 2652 'description': 'cbuildbot', | 1868 'description': 'running steps via annotated script', |
| 1869 'haltOnFailure': True, |
| 2653 'maxTime': 57600, | 1870 'maxTime': 57600, |
| 2654 'name': 'cbuildbot', | 1871 'name': 'steps', |
| 2655 'timeout': 9000, | 1872 'timeout': 9000, |
| 2656 'usePTY': False, | |
| 2657 }, | 1873 }, |
| 2658 ), | 1874 ), |
| 2659 ], | 1875 ], |
| 2660 properties: Properties(**{}), | 1876 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2661 }, | 1877 }, |
| 2662 'name': u'release-afdo-generate', | 1878 'name': u'release-afdo-generate', |
| 2663 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1879 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1880 'properties': {}, |
| 2664 'slavenames': [ | 1881 'slavenames': [ |
| 2665 'build275-m2', | 1882 'build275-m2', |
| 2666 'build272-m2', | 1883 'build272-m2', |
| 2667 'cros-testing3-c2', | 1884 'cros-testing3-c2', |
| 2668 'build270-m2', | 1885 'build270-m2', |
| 2669 'build274-m2', | 1886 'build274-m2', |
| 2670 'cros-testing10-c2', | 1887 'cros-testing10-c2', |
| 2671 'cros-testing6-c2', | 1888 'cros-testing6-c2', |
| 2672 'build266-m2', | 1889 'build266-m2', |
| 2673 'cros-testing4-c2', | 1890 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 2687 'cros-testing1-c2', | 1904 'cros-testing1-c2', |
| 2688 'cros-testing9-c2', | 1905 'cros-testing9-c2', |
| 2689 ], | 1906 ], |
| 2690 }, | 1907 }, |
| 2691 { | 1908 { |
| 2692 'builddir': u'release-afdo-use', | 1909 'builddir': u'release-afdo-use', |
| 2693 'category': '3general full|info', | 1910 'category': '3general full|info', |
| 2694 'factory': BuildFactory { | 1911 'factory': BuildFactory { |
| 2695 steps: [ | 1912 steps: [ |
| 2696 ( | 1913 ( |
| 2697 <class buildbot.steps.shell.ShellCommand>, | |
| 2698 { | |
| 2699 'command': [ | |
| 2700 'gclient', | |
| 2701 'sync', | |
| 2702 '--verbose', | |
| 2703 '--force', | |
| 2704 '--delete_unversioned_trees', | |
| 2705 ], | |
| 2706 'description': 'Sync buildbot slave files', | |
| 2707 'name': 'update_scripts', | |
| 2708 'timeout': 300, | |
| 2709 'want_stderr': True, | |
| 2710 'want_stdout': True, | |
| 2711 'workdir': '/b', | |
| 2712 }, | |
| 2713 ), | |
| 2714 ( | |
| 2715 <class buildbot.steps.shell.ShellCommand>, | |
| 2716 { | |
| 2717 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 2718 'description': 'Clear and Clone chromite', | |
| 2719 'haltOnFailure': True, | |
| 2720 'name': 'Clear and Clone chromite', | |
| 2721 }, | |
| 2722 ), | |
| 2723 ( | |
| 2724 <class master.chromium_step.AnnotatedCommand>, | 1914 <class master.chromium_step.AnnotatedCommand>, |
| 2725 { | 1915 { |
| 1916 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2726 'command': [ | 1917 'command': [ |
| 2727 'chromite/bin/cbuildbot', | 1918 'python', |
| 2728 <buildbot.process.properties.WithProperties instance>, | 1919 '-u', |
| 2729 <master.master_utils.ConditionalProperty instance>, | 1920 '../../../scripts/slave/annotated_run.py', |
| 2730 <master.master_utils.ConditionalProperty instance>, | 1921 <master.factory.commands.WithJsonProperties instance>, |
| 2731 <buildbot.process.properties.Property instance>, | 1922 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2732 <master.master_utils.ConditionalProperty instance>, | |
| 2733 <buildbot.process.properties.WithProperties instance>, | |
| 2734 ], | 1923 ], |
| 2735 'description': 'cbuildbot', | 1924 'description': 'running steps via annotated script', |
| 1925 'haltOnFailure': True, |
| 2736 'maxTime': 57600, | 1926 'maxTime': 57600, |
| 2737 'name': 'cbuildbot', | 1927 'name': 'steps', |
| 2738 'timeout': 9000, | 1928 'timeout': 9000, |
| 2739 'usePTY': False, | |
| 2740 }, | 1929 }, |
| 2741 ), | 1930 ), |
| 2742 ], | 1931 ], |
| 2743 properties: Properties(**{}), | 1932 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2744 }, | 1933 }, |
| 2745 'name': u'release-afdo-use', | 1934 'name': u'release-afdo-use', |
| 2746 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1935 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1936 'properties': {}, |
| 2747 'slavenames': [ | 1937 'slavenames': [ |
| 2748 'build275-m2', | 1938 'build275-m2', |
| 2749 'build272-m2', | 1939 'build272-m2', |
| 2750 'cros-testing3-c2', | 1940 'cros-testing3-c2', |
| 2751 'build270-m2', | 1941 'build270-m2', |
| 2752 'build274-m2', | 1942 'build274-m2', |
| 2753 'cros-testing10-c2', | 1943 'cros-testing10-c2', |
| 2754 'cros-testing6-c2', | 1944 'cros-testing6-c2', |
| 2755 'build266-m2', | 1945 'build266-m2', |
| 2756 'cros-testing4-c2', | 1946 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 2770 'cros-testing1-c2', | 1960 'cros-testing1-c2', |
| 2771 'cros-testing9-c2', | 1961 'cros-testing9-c2', |
| 2772 ], | 1962 ], |
| 2773 }, | 1963 }, |
| 2774 { | 1964 { |
| 2775 'builddir': u'sync-test-cbuildbot', | 1965 'builddir': u'sync-test-cbuildbot', |
| 2776 'category': '3general full|info', | 1966 'category': '3general full|info', |
| 2777 'factory': BuildFactory { | 1967 'factory': BuildFactory { |
| 2778 steps: [ | 1968 steps: [ |
| 2779 ( | 1969 ( |
| 2780 <class buildbot.steps.shell.ShellCommand>, | |
| 2781 { | |
| 2782 'command': [ | |
| 2783 'gclient', | |
| 2784 'sync', | |
| 2785 '--verbose', | |
| 2786 '--force', | |
| 2787 '--delete_unversioned_trees', | |
| 2788 ], | |
| 2789 'description': 'Sync buildbot slave files', | |
| 2790 'name': 'update_scripts', | |
| 2791 'timeout': 300, | |
| 2792 'want_stderr': True, | |
| 2793 'want_stdout': True, | |
| 2794 'workdir': '/b', | |
| 2795 }, | |
| 2796 ), | |
| 2797 ( | |
| 2798 <class buildbot.steps.shell.ShellCommand>, | |
| 2799 { | |
| 2800 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 2801 'description': 'Clear and Clone chromite', | |
| 2802 'haltOnFailure': True, | |
| 2803 'name': 'Clear and Clone chromite', | |
| 2804 }, | |
| 2805 ), | |
| 2806 ( | |
| 2807 <class master.chromium_step.AnnotatedCommand>, | 1970 <class master.chromium_step.AnnotatedCommand>, |
| 2808 { | 1971 { |
| 1972 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2809 'command': [ | 1973 'command': [ |
| 2810 'chromite/bin/cbuildbot', | 1974 'python', |
| 2811 <buildbot.process.properties.WithProperties instance>, | 1975 '-u', |
| 2812 <master.master_utils.ConditionalProperty instance>, | 1976 '../../../scripts/slave/annotated_run.py', |
| 2813 <master.master_utils.ConditionalProperty instance>, | 1977 <master.factory.commands.WithJsonProperties instance>, |
| 2814 <buildbot.process.properties.Property instance>, | 1978 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2815 <master.master_utils.ConditionalProperty instance>, | |
| 2816 <buildbot.process.properties.WithProperties instance>, | |
| 2817 ], | 1979 ], |
| 2818 'description': 'cbuildbot', | 1980 'description': 'running steps via annotated script', |
| 1981 'haltOnFailure': True, |
| 2819 'maxTime': 57600, | 1982 'maxTime': 57600, |
| 2820 'name': 'cbuildbot', | 1983 'name': 'steps', |
| 2821 'timeout': 9000, | 1984 'timeout': 9000, |
| 2822 'usePTY': False, | |
| 2823 }, | 1985 }, |
| 2824 ), | 1986 ), |
| 2825 ], | 1987 ], |
| 2826 properties: Properties(**{}), | 1988 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2827 }, | 1989 }, |
| 2828 'name': u'sync-test-cbuildbot', | 1990 'name': u'sync-test-cbuildbot', |
| 2829 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1991 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1992 'properties': {}, |
| 2830 'slavenames': [ | 1993 'slavenames': [ |
| 2831 'build275-m2', | 1994 'build275-m2', |
| 2832 'build272-m2', | 1995 'build272-m2', |
| 2833 'cros-testing3-c2', | 1996 'cros-testing3-c2', |
| 2834 'build270-m2', | 1997 'build270-m2', |
| 2835 'build274-m2', | 1998 'build274-m2', |
| 2836 'cros-testing10-c2', | 1999 'cros-testing10-c2', |
| 2837 'cros-testing6-c2', | 2000 'cros-testing6-c2', |
| 2838 'build266-m2', | 2001 'build266-m2', |
| 2839 'cros-testing4-c2', | 2002 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 2853 'cros-testing1-c2', | 2016 'cros-testing1-c2', |
| 2854 'cros-testing9-c2', | 2017 'cros-testing9-c2', |
| 2855 ], | 2018 ], |
| 2856 }, | 2019 }, |
| 2857 { | 2020 { |
| 2858 'builddir': u'telemetry', | 2021 'builddir': u'telemetry', |
| 2859 'category': '3general full|info', | 2022 'category': '3general full|info', |
| 2860 'factory': BuildFactory { | 2023 'factory': BuildFactory { |
| 2861 steps: [ | 2024 steps: [ |
| 2862 ( | 2025 ( |
| 2863 <class buildbot.steps.shell.ShellCommand>, | |
| 2864 { | |
| 2865 'command': [ | |
| 2866 'gclient', | |
| 2867 'sync', | |
| 2868 '--verbose', | |
| 2869 '--force', | |
| 2870 '--delete_unversioned_trees', | |
| 2871 ], | |
| 2872 'description': 'Sync buildbot slave files', | |
| 2873 'name': 'update_scripts', | |
| 2874 'timeout': 300, | |
| 2875 'want_stderr': True, | |
| 2876 'want_stdout': True, | |
| 2877 'workdir': '/b', | |
| 2878 }, | |
| 2879 ), | |
| 2880 ( | |
| 2881 <class buildbot.steps.shell.ShellCommand>, | |
| 2882 { | |
| 2883 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 2884 'description': 'Clear and Clone chromite', | |
| 2885 'haltOnFailure': True, | |
| 2886 'name': 'Clear and Clone chromite', | |
| 2887 }, | |
| 2888 ), | |
| 2889 ( | |
| 2890 <class master.chromium_step.AnnotatedCommand>, | 2026 <class master.chromium_step.AnnotatedCommand>, |
| 2891 { | 2027 { |
| 2028 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2892 'command': [ | 2029 'command': [ |
| 2893 'chromite/bin/cbuildbot', | 2030 'python', |
| 2894 <buildbot.process.properties.WithProperties instance>, | 2031 '-u', |
| 2895 <master.master_utils.ConditionalProperty instance>, | 2032 '../../../scripts/slave/annotated_run.py', |
| 2896 <master.master_utils.ConditionalProperty instance>, | 2033 <master.factory.commands.WithJsonProperties instance>, |
| 2897 <buildbot.process.properties.Property instance>, | 2034 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2898 <master.master_utils.ConditionalProperty instance>, | |
| 2899 <buildbot.process.properties.WithProperties instance>, | |
| 2900 ], | 2035 ], |
| 2901 'description': 'cbuildbot', | 2036 'description': 'running steps via annotated script', |
| 2037 'haltOnFailure': True, |
| 2902 'maxTime': 57600, | 2038 'maxTime': 57600, |
| 2903 'name': 'cbuildbot', | 2039 'name': 'steps', |
| 2904 'timeout': 9000, | 2040 'timeout': 9000, |
| 2905 'usePTY': False, | |
| 2906 }, | 2041 }, |
| 2907 ), | 2042 ), |
| 2908 ], | 2043 ], |
| 2909 properties: Properties(**{}), | 2044 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2910 }, | 2045 }, |
| 2911 'name': u'telemetry', | 2046 'name': u'telemetry', |
| 2912 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 2047 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2048 'properties': {}, |
| 2913 'slavenames': [ | 2049 'slavenames': [ |
| 2914 'build275-m2', | 2050 'build275-m2', |
| 2915 'build272-m2', | 2051 'build272-m2', |
| 2916 'cros-testing3-c2', | 2052 'cros-testing3-c2', |
| 2917 'build270-m2', | 2053 'build270-m2', |
| 2918 'build274-m2', | 2054 'build274-m2', |
| 2919 'cros-testing10-c2', | 2055 'cros-testing10-c2', |
| 2920 'cros-testing6-c2', | 2056 'cros-testing6-c2', |
| 2921 'build266-m2', | 2057 'build266-m2', |
| 2922 'cros-testing4-c2', | 2058 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 2936 'cros-testing1-c2', | 2072 'cros-testing1-c2', |
| 2937 'cros-testing9-c2', | 2073 'cros-testing9-c2', |
| 2938 ], | 2074 ], |
| 2939 }, | 2075 }, |
| 2940 { | 2076 { |
| 2941 'builddir': u'test-ap', | 2077 'builddir': u'test-ap', |
| 2942 'category': '3general full|info', | 2078 'category': '3general full|info', |
| 2943 'factory': BuildFactory { | 2079 'factory': BuildFactory { |
| 2944 steps: [ | 2080 steps: [ |
| 2945 ( | 2081 ( |
| 2946 <class buildbot.steps.shell.ShellCommand>, | |
| 2947 { | |
| 2948 'command': [ | |
| 2949 'gclient', | |
| 2950 'sync', | |
| 2951 '--verbose', | |
| 2952 '--force', | |
| 2953 '--delete_unversioned_trees', | |
| 2954 ], | |
| 2955 'description': 'Sync buildbot slave files', | |
| 2956 'name': 'update_scripts', | |
| 2957 'timeout': 300, | |
| 2958 'want_stderr': True, | |
| 2959 'want_stdout': True, | |
| 2960 'workdir': '/b', | |
| 2961 }, | |
| 2962 ), | |
| 2963 ( | |
| 2964 <class buildbot.steps.shell.ShellCommand>, | |
| 2965 { | |
| 2966 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 2967 'description': 'Clear and Clone chromite', | |
| 2968 'haltOnFailure': True, | |
| 2969 'name': 'Clear and Clone chromite', | |
| 2970 }, | |
| 2971 ), | |
| 2972 ( | |
| 2973 <class master.chromium_step.AnnotatedCommand>, | 2082 <class master.chromium_step.AnnotatedCommand>, |
| 2974 { | 2083 { |
| 2084 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2975 'command': [ | 2085 'command': [ |
| 2976 'chromite/bin/cbuildbot', | 2086 'python', |
| 2977 <buildbot.process.properties.WithProperties instance>, | 2087 '-u', |
| 2978 <master.master_utils.ConditionalProperty instance>, | 2088 '../../../scripts/slave/annotated_run.py', |
| 2979 <master.master_utils.ConditionalProperty instance>, | 2089 <master.factory.commands.WithJsonProperties instance>, |
| 2980 <buildbot.process.properties.Property instance>, | 2090 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2981 <master.master_utils.ConditionalProperty instance>, | |
| 2982 <buildbot.process.properties.WithProperties instance>, | |
| 2983 ], | 2091 ], |
| 2984 'description': 'cbuildbot', | 2092 'description': 'running steps via annotated script', |
| 2093 'haltOnFailure': True, |
| 2985 'maxTime': 57600, | 2094 'maxTime': 57600, |
| 2986 'name': 'cbuildbot', | 2095 'name': 'steps', |
| 2987 'timeout': 9000, | 2096 'timeout': 9000, |
| 2988 'usePTY': False, | |
| 2989 }, | 2097 }, |
| 2990 ), | 2098 ), |
| 2991 ], | 2099 ], |
| 2992 properties: Properties(**{}), | 2100 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2993 }, | 2101 }, |
| 2994 'name': u'test-ap', | 2102 'name': u'test-ap', |
| 2995 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 2103 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2104 'properties': {}, |
| 2996 'slavenames': [ | 2105 'slavenames': [ |
| 2997 'build275-m2', | 2106 'build275-m2', |
| 2998 'build272-m2', | 2107 'build272-m2', |
| 2999 'cros-testing3-c2', | 2108 'cros-testing3-c2', |
| 3000 'build270-m2', | 2109 'build270-m2', |
| 3001 'build274-m2', | 2110 'build274-m2', |
| 3002 'cros-testing10-c2', | 2111 'cros-testing10-c2', |
| 3003 'cros-testing6-c2', | 2112 'cros-testing6-c2', |
| 3004 'build266-m2', | 2113 'build266-m2', |
| 3005 'cros-testing4-c2', | 2114 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 3019 'cros-testing1-c2', | 2128 'cros-testing1-c2', |
| 3020 'cros-testing9-c2', | 2129 'cros-testing9-c2', |
| 3021 ], | 2130 ], |
| 3022 }, | 2131 }, |
| 3023 { | 2132 { |
| 3024 'builddir': u'toolchain-major', | 2133 'builddir': u'toolchain-major', |
| 3025 'category': '3general full|info', | 2134 'category': '3general full|info', |
| 3026 'factory': BuildFactory { | 2135 'factory': BuildFactory { |
| 3027 steps: [ | 2136 steps: [ |
| 3028 ( | 2137 ( |
| 3029 <class buildbot.steps.shell.ShellCommand>, | |
| 3030 { | |
| 3031 'command': [ | |
| 3032 'gclient', | |
| 3033 'sync', | |
| 3034 '--verbose', | |
| 3035 '--force', | |
| 3036 '--delete_unversioned_trees', | |
| 3037 ], | |
| 3038 'description': 'Sync buildbot slave files', | |
| 3039 'name': 'update_scripts', | |
| 3040 'timeout': 300, | |
| 3041 'want_stderr': True, | |
| 3042 'want_stdout': True, | |
| 3043 'workdir': '/b', | |
| 3044 }, | |
| 3045 ), | |
| 3046 ( | |
| 3047 <class buildbot.steps.shell.ShellCommand>, | |
| 3048 { | |
| 3049 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 3050 'description': 'Clear and Clone chromite', | |
| 3051 'haltOnFailure': True, | |
| 3052 'name': 'Clear and Clone chromite', | |
| 3053 }, | |
| 3054 ), | |
| 3055 ( | |
| 3056 <class master.chromium_step.AnnotatedCommand>, | 2138 <class master.chromium_step.AnnotatedCommand>, |
| 3057 { | 2139 { |
| 2140 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 3058 'command': [ | 2141 'command': [ |
| 3059 'chromite/bin/cbuildbot', | 2142 'python', |
| 3060 <buildbot.process.properties.WithProperties instance>, | 2143 '-u', |
| 3061 <master.master_utils.ConditionalProperty instance>, | 2144 '../../../scripts/slave/annotated_run.py', |
| 3062 <master.master_utils.ConditionalProperty instance>, | 2145 <master.factory.commands.WithJsonProperties instance>, |
| 3063 <buildbot.process.properties.Property instance>, | 2146 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 3064 <master.master_utils.ConditionalProperty instance>, | |
| 3065 <buildbot.process.properties.WithProperties instance>, | |
| 3066 ], | 2147 ], |
| 3067 'description': 'cbuildbot', | 2148 'description': 'running steps via annotated script', |
| 2149 'haltOnFailure': True, |
| 3068 'maxTime': 57600, | 2150 'maxTime': 57600, |
| 3069 'name': 'cbuildbot', | 2151 'name': 'steps', |
| 3070 'timeout': 9000, | 2152 'timeout': 9000, |
| 3071 'usePTY': False, | |
| 3072 }, | 2153 }, |
| 3073 ), | 2154 ), |
| 3074 ], | 2155 ], |
| 3075 properties: Properties(**{}), | 2156 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 3076 }, | 2157 }, |
| 3077 'name': u'toolchain-major', | 2158 'name': u'toolchain-major', |
| 3078 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 2159 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2160 'properties': {}, |
| 3079 'slavenames': [ | 2161 'slavenames': [ |
| 3080 'build275-m2', | 2162 'build275-m2', |
| 3081 'build272-m2', | 2163 'build272-m2', |
| 3082 'cros-testing3-c2', | 2164 'cros-testing3-c2', |
| 3083 'build270-m2', | 2165 'build270-m2', |
| 3084 'build274-m2', | 2166 'build274-m2', |
| 3085 'cros-testing10-c2', | 2167 'cros-testing10-c2', |
| 3086 'cros-testing6-c2', | 2168 'cros-testing6-c2', |
| 3087 'build266-m2', | 2169 'build266-m2', |
| 3088 'cros-testing4-c2', | 2170 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 3102 'cros-testing1-c2', | 2184 'cros-testing1-c2', |
| 3103 'cros-testing9-c2', | 2185 'cros-testing9-c2', |
| 3104 ], | 2186 ], |
| 3105 }, | 2187 }, |
| 3106 { | 2188 { |
| 3107 'builddir': u'toolchain-minor', | 2189 'builddir': u'toolchain-minor', |
| 3108 'category': '3general full|info', | 2190 'category': '3general full|info', |
| 3109 'factory': BuildFactory { | 2191 'factory': BuildFactory { |
| 3110 steps: [ | 2192 steps: [ |
| 3111 ( | 2193 ( |
| 3112 <class buildbot.steps.shell.ShellCommand>, | |
| 3113 { | |
| 3114 'command': [ | |
| 3115 'gclient', | |
| 3116 'sync', | |
| 3117 '--verbose', | |
| 3118 '--force', | |
| 3119 '--delete_unversioned_trees', | |
| 3120 ], | |
| 3121 'description': 'Sync buildbot slave files', | |
| 3122 'name': 'update_scripts', | |
| 3123 'timeout': 300, | |
| 3124 'want_stderr': True, | |
| 3125 'want_stdout': True, | |
| 3126 'workdir': '/b', | |
| 3127 }, | |
| 3128 ), | |
| 3129 ( | |
| 3130 <class buildbot.steps.shell.ShellCommand>, | |
| 3131 { | |
| 3132 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 3133 'description': 'Clear and Clone chromite', | |
| 3134 'haltOnFailure': True, | |
| 3135 'name': 'Clear and Clone chromite', | |
| 3136 }, | |
| 3137 ), | |
| 3138 ( | |
| 3139 <class master.chromium_step.AnnotatedCommand>, | 2194 <class master.chromium_step.AnnotatedCommand>, |
| 3140 { | 2195 { |
| 2196 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 3141 'command': [ | 2197 'command': [ |
| 3142 'chromite/bin/cbuildbot', | 2198 'python', |
| 3143 <buildbot.process.properties.WithProperties instance>, | 2199 '-u', |
| 3144 <master.master_utils.ConditionalProperty instance>, | 2200 '../../../scripts/slave/annotated_run.py', |
| 3145 <master.master_utils.ConditionalProperty instance>, | 2201 <master.factory.commands.WithJsonProperties instance>, |
| 3146 <buildbot.process.properties.Property instance>, | 2202 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 3147 <master.master_utils.ConditionalProperty instance>, | |
| 3148 <buildbot.process.properties.WithProperties instance>, | |
| 3149 ], | 2203 ], |
| 3150 'description': 'cbuildbot', | 2204 'description': 'running steps via annotated script', |
| 2205 'haltOnFailure': True, |
| 3151 'maxTime': 57600, | 2206 'maxTime': 57600, |
| 3152 'name': 'cbuildbot', | 2207 'name': 'steps', |
| 3153 'timeout': 9000, | 2208 'timeout': 9000, |
| 3154 'usePTY': False, | |
| 3155 }, | 2209 }, |
| 3156 ), | 2210 ), |
| 3157 ], | 2211 ], |
| 3158 properties: Properties(**{}), | 2212 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 3159 }, | 2213 }, |
| 3160 'name': u'toolchain-minor', | 2214 'name': u'toolchain-minor', |
| 3161 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 2215 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2216 'properties': {}, |
| 3162 'slavenames': [ | 2217 'slavenames': [ |
| 3163 'build275-m2', | 2218 'build275-m2', |
| 3164 'build272-m2', | 2219 'build272-m2', |
| 3165 'cros-testing3-c2', | 2220 'cros-testing3-c2', |
| 3166 'build270-m2', | 2221 'build270-m2', |
| 3167 'build274-m2', | 2222 'build274-m2', |
| 3168 'cros-testing10-c2', | 2223 'cros-testing10-c2', |
| 3169 'cros-testing6-c2', | 2224 'cros-testing6-c2', |
| 3170 'build266-m2', | 2225 'build266-m2', |
| 3171 'cros-testing4-c2', | 2226 'cros-testing4-c2', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 3185 'cros-testing1-c2', | 2240 'cros-testing1-c2', |
| 3186 'cros-testing9-c2', | 2241 'cros-testing9-c2', |
| 3187 ], | 2242 ], |
| 3188 }, | 2243 }, |
| 3189 { | 2244 { |
| 3190 'builddir': u'tot-asan-informational', | 2245 'builddir': u'tot-asan-informational', |
| 3191 'category': '3general full|info', | 2246 'category': '3general full|info', |
| 3192 'factory': BuildFactory { | 2247 'factory': BuildFactory { |
| 3193 steps: [ | 2248 steps: [ |
| 3194 ( | 2249 ( |
| 3195 <class buildbot.steps.shell.ShellCommand>, | |
| 3196 { | |
| 3197 'command': [ | |
| 3198 'gclient', | |
| 3199 'sync', | |
| 3200 '--verbose', | |
| 3201 '--force', | |
| 3202 '--delete_unversioned_trees', | |
| 3203 ], | |
| 3204 'description': 'Sync buildbot slave files', | |
| 3205 'name': 'update_scripts', | |
| 3206 'timeout': 300, | |
| 3207 'want_stderr': True, | |
| 3208 'want_stdout': True, | |
| 3209 'workdir': '/b', | |
| 3210 }, | |
| 3211 ), | |
| 3212 ( | |
| 3213 <class buildbot.steps.shell.ShellCommand>, | |
| 3214 { | |
| 3215 'command': 'rm -rf "chromite" && /usr/bin/git retry clone https://
chromium.googlesource.com/chromiumos/chromite.git && cd "chromite" && /usr/bin/g
it checkout master', | |
| 3216 'description': 'Clear and Clone chromite', | |
| 3217 'haltOnFailure': True, | |
| 3218 'name': 'Clear and Clone chromite', | |
| 3219 }, | |
| 3220 ), | |
| 3221 ( | |
| 3222 <class master.chromium_step.AnnotatedCommand>, | 2250 <class master.chromium_step.AnnotatedCommand>, |
| 3223 { | 2251 { |
| 2252 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 3224 'command': [ | 2253 'command': [ |
| 3225 'chromite/bin/cbuildbot', | 2254 'python', |
| 3226 <buildbot.process.properties.WithProperties instance>, | 2255 '-u', |
| 3227 <master.master_utils.ConditionalProperty instance>, | 2256 '../../../scripts/slave/annotated_run.py', |
| 3228 <master.master_utils.ConditionalProperty instance>, | 2257 <master.factory.commands.WithJsonProperties instance>, |
| 3229 <buildbot.process.properties.Property instance>, | 2258 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 3230 <master.master_utils.ConditionalProperty instance>, | |
| 3231 <buildbot.process.properties.WithProperties instance>, | |
| 3232 ], | 2259 ], |
| 3233 'description': 'cbuildbot', | 2260 'description': 'running steps via annotated script', |
| 2261 'haltOnFailure': True, |
| 3234 'maxTime': 57600, | 2262 'maxTime': 57600, |
| 3235 'name': 'cbuildbot', | 2263 'name': 'steps', |
| 3236 'timeout': 9000, | 2264 'timeout': 9000, |
| 3237 'usePTY': False, | |
| 3238 }, | 2265 }, |
| 3239 ), | 2266 ), |
| 3240 ], | 2267 ], |
| 3241 properties: Properties(**{}), | 2268 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 3242 }, | 2269 }, |
| 3243 'name': u'tot-asan-informational', | 2270 'name': u'tot-asan-informational', |
| 3244 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 2271 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2272 'properties': {}, |
| 3245 'slavenames': [ | 2273 'slavenames': [ |
| 3246 'build275-m2', | 2274 'build275-m2', |
| 3247 'build272-m2', | 2275 'build272-m2', |
| 3248 'cros-testing3-c2', | 2276 'cros-testing3-c2', |
| 3249 'build270-m2', | 2277 'build270-m2', |
| 3250 'build274-m2', | 2278 'build274-m2', |
| 3251 'cros-testing10-c2', | 2279 'cros-testing10-c2', |
| 3252 'cros-testing6-c2', | 2280 'cros-testing6-c2', |
| 3253 'build266-m2', | 2281 'build266-m2', |
| 3254 'cros-testing4-c2', | 2282 'cros-testing4-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 3271 }, | 2299 }, |
| 3272 ], | 2300 ], |
| 3273 'caches': { | 2301 'caches': { |
| 3274 'BuildRequests': 1000, | 2302 'BuildRequests': 1000, |
| 3275 'Changes': 1000, | 2303 'Changes': 1000, |
| 3276 'SourceStamps': 1000, | 2304 'SourceStamps': 1000, |
| 3277 'chdicts': 1000, | 2305 'chdicts': 1000, |
| 3278 'ssdicts': 1000, | 2306 'ssdicts': 1000, |
| 3279 }, | 2307 }, |
| 3280 'change_source': [ | 2308 'change_source': [ |
| 3281 <buildbot.changes.gitpoller.GitPoller instance>, | 2309 <master.gitiles_poller.GitilesPoller instance>, |
| 3282 <buildbot.changes.gitpoller.GitPoller instance>, | 2310 <master.gitiles_poller.GitilesPoller instance>, |
| 3283 ], | 2311 ], |
| 3284 'eventHorizon': 200, | 2312 'eventHorizon': 200, |
| 3285 'logHorizon': 3000, | 2313 'logHorizon': 3000, |
| 3286 'mergeRequests': <function <lambda>>, | 2314 'mergeRequests': <function <lambda>>, |
| 3287 'projectName': 'ChromiumOS Try Server', | 2315 'projectName': 'ChromiumOS Try Server', |
| 3288 'projectURL': 'http://www.chromium.org', | 2316 'projectURL': 'http://www.chromium.org', |
| 3289 'properties': { | 2317 'properties': { |
| 3290 'buildbotURL': 'https://uberchromegw.corp.google.com/i/chromiumos.tryserver/
', | 2318 'buildbotURL': 'https://uberchromegw.corp.google.com/i/chromiumos.tryserver/
', |
| 3291 'mastername': 'chromiumos.tryserver', | 2319 'mastername': 'chromiumos.tryserver', |
| 3292 }, | 2320 }, |
| (...skipping 1748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5041 namedServices: {}, | 4069 namedServices: {}, |
| 5042 from_addr: 'cros.tryserver@chromium.org', | 4070 from_addr: 'cros.tryserver@chromium.org', |
| 5043 smtp_host: 'smtp', | 4071 smtp_host: 'smtp', |
| 5044 reply_to: 'chromeos-build@google.com', | 4072 reply_to: 'chromeos-build@google.com', |
| 5045 etc_builder: 'etc', | 4073 etc_builder: 'etc', |
| 5046 schedulerid: None, | 4074 schedulerid: None, |
| 5047 master: None, | 4075 master: None, |
| 5048 email_footer: '\n<strong>Please send bugs and questions to chromeos-build@
google.com. You can\nalso reply to this email.</strong>\n', | 4076 email_footer: '\n<strong>Please send bugs and questions to chromeos-build@
google.com. You can\nalso reply to this email.</strong>\n', |
| 5049 services: [], | 4077 services: [], |
| 5050 pollers: [ | 4078 pollers: [ |
| 5051 <buildbot.changes.gitpoller.GitPoller instance>, | 4079 <master.gitiles_poller.GitilesPoller instance>, |
| 5052 <buildbot.changes.gitpoller.GitPoller instance>, | 4080 <master.gitiles_poller.GitilesPoller instance>, |
| 5053 ], | 4081 ], |
| 5054 builderNames: [], | 4082 builderNames: [], |
| 5055 properties: Properties(**{'scheduler': 'cros_try_job_git'}), | 4083 properties: Properties(**{'scheduler': 'cros_try_job_git'}), |
| 5056 }, | 4084 }, |
| 5057 ], | 4085 ], |
| 5058 'slavePortnum': 8149, | 4086 'slavePortnum': 8149, |
| 5059 'slaves': [ | 4087 'slaves': [ |
| 5060 <AutoRebootBuildSlave 'build275-m2', (no builders yet)>, | 4088 <AutoRebootBuildSlave 'build275-m2', (no builders yet)>, |
| 5061 <AutoRebootBuildSlave 'build272-m2', (no builders yet)>, | 4089 <AutoRebootBuildSlave 'build272-m2', (no builders yet)>, |
| 5062 <AutoRebootBuildSlave 'cros16-c2', (no builders yet)>, | 4090 <AutoRebootBuildSlave 'cros16-c2', (no builders yet)>, |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5165 <AutoRebootBuildSlave 'build244-m2', (no builders yet)>, | 4193 <AutoRebootBuildSlave 'build244-m2', (no builders yet)>, |
| 5166 ], | 4194 ], |
| 5167 'status': [ | 4195 'status': [ |
| 5168 <WebStatus on port tcp:8049>, | 4196 <WebStatus on port tcp:8049>, |
| 5169 <WebStatus on port tcp:8249>, | 4197 <WebStatus on port tcp:8249>, |
| 5170 <master.status_logger.StatusEventLogger instance>, | 4198 <master.status_logger.StatusEventLogger instance>, |
| 5171 <buildbot.status.mail.MailNotifier instance>, | 4199 <buildbot.status.mail.MailNotifier instance>, |
| 5172 <master.try_mail_notifier.TryMailNotifier instance>, | 4200 <master.try_mail_notifier.TryMailNotifier instance>, |
| 5173 ], | 4201 ], |
| 5174 } | 4202 } |
| OLD | NEW |