| 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>, |
| 62 'slavenames': [ | 34 'slavenames': [ |
| 63 'build275-m2', | 35 'build275-m2', |
| 64 'build272-m2', | 36 'build272-m2', |
| 65 'cros-testing3-c2', | 37 'cros-testing3-c2', |
| 66 'build270-m2', | 38 'build270-m2', |
| 67 'build274-m2', | 39 'build274-m2', |
| 68 'cros-testing10-c2', | 40 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 85 'cros-testing1-c2', | 57 'cros-testing1-c2', |
| 86 'cros-testing9-c2', | 58 'cros-testing9-c2', |
| 87 ], | 59 ], |
| 88 }, | 60 }, |
| 89 { | 61 { |
| 90 'builddir': u'compile-only-pre-cq', | 62 'builddir': u'compile-only-pre-cq', |
| 91 'category': '2precq full|info', | 63 'category': '2precq full|info', |
| 92 'factory': BuildFactory { | 64 'factory': BuildFactory { |
| 93 steps: [ | 65 steps: [ |
| 94 ( | 66 ( |
| 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>, | 67 <class master.chromium_step.AnnotatedCommand>, |
| 123 { | 68 { |
| 69 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 124 'command': [ | 70 'command': [ |
| 125 'chromite/bin/cbuildbot', | 71 'python', |
| 126 <buildbot.process.properties.WithProperties instance>, | 72 '-u', |
| 127 <master.master_utils.ConditionalProperty instance>, | 73 '../../../scripts/slave/annotated_run.py', |
| 128 <master.master_utils.ConditionalProperty instance>, | 74 <master.factory.commands.WithJsonProperties instance>, |
| 129 <buildbot.process.properties.Property instance>, | 75 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 130 <master.master_utils.ConditionalProperty instance>, | |
| 131 <buildbot.process.properties.WithProperties instance>, | |
| 132 ], | 76 ], |
| 133 'description': 'cbuildbot', | 77 'description': 'running steps via annotated script', |
| 78 'haltOnFailure': True, |
| 134 'maxTime': 57600, | 79 'maxTime': 57600, |
| 135 'name': 'cbuildbot', | 80 'name': 'steps', |
| 136 'timeout': 9000, | 81 'timeout': 9000, |
| 137 'usePTY': False, | |
| 138 }, | 82 }, |
| 139 ), | 83 ), |
| 140 ], | 84 ], |
| 141 properties: Properties(**{}), | 85 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 142 }, | 86 }, |
| 143 'name': u'compile-only-pre-cq', | 87 'name': u'compile-only-pre-cq', |
| 144 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 88 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 145 'slavenames': [ | 89 'slavenames': [ |
| 146 'build275-m2', | 90 'build275-m2', |
| 147 'build272-m2', | 91 'build272-m2', |
| 148 'cros16-c2', | 92 'cros16-c2', |
| 149 'build218-m2', | 93 'build218-m2', |
| 150 'build231-m2', | 94 'build231-m2', |
| 151 'cros11-c2', | 95 'cros11-c2', |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 'build213-m2', | 194 'build213-m2', |
| 251 'build244-m2', | 195 'build244-m2', |
| 252 ], | 196 ], |
| 253 }, | 197 }, |
| 254 { | 198 { |
| 255 'builddir': u'no-vmtest-pre-cq', | 199 'builddir': u'no-vmtest-pre-cq', |
| 256 'category': '2precq full|info', | 200 'category': '2precq full|info', |
| 257 'factory': BuildFactory { | 201 'factory': BuildFactory { |
| 258 steps: [ | 202 steps: [ |
| 259 ( | 203 ( |
| 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>, | 204 <class master.chromium_step.AnnotatedCommand>, |
| 288 { | 205 { |
| 206 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 289 'command': [ | 207 'command': [ |
| 290 'chromite/bin/cbuildbot', | 208 'python', |
| 291 <buildbot.process.properties.WithProperties instance>, | 209 '-u', |
| 292 <master.master_utils.ConditionalProperty instance>, | 210 '../../../scripts/slave/annotated_run.py', |
| 293 <master.master_utils.ConditionalProperty instance>, | 211 <master.factory.commands.WithJsonProperties instance>, |
| 294 <buildbot.process.properties.Property instance>, | 212 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 295 <master.master_utils.ConditionalProperty instance>, | |
| 296 <buildbot.process.properties.WithProperties instance>, | |
| 297 ], | 213 ], |
| 298 'description': 'cbuildbot', | 214 'description': 'running steps via annotated script', |
| 215 'haltOnFailure': True, |
| 299 'maxTime': 57600, | 216 'maxTime': 57600, |
| 300 'name': 'cbuildbot', | 217 'name': 'steps', |
| 301 'timeout': 9000, | 218 'timeout': 9000, |
| 302 'usePTY': False, | |
| 303 }, | 219 }, |
| 304 ), | 220 ), |
| 305 ], | 221 ], |
| 306 properties: Properties(**{}), | 222 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 307 }, | 223 }, |
| 308 'name': u'no-vmtest-pre-cq', | 224 'name': u'no-vmtest-pre-cq', |
| 309 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 225 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 310 'slavenames': [ | 226 'slavenames': [ |
| 311 'build275-m2', | 227 'build275-m2', |
| 312 'build272-m2', | 228 'build272-m2', |
| 313 'cros16-c2', | 229 'cros16-c2', |
| 314 'build218-m2', | 230 'build218-m2', |
| 315 'build231-m2', | 231 'build231-m2', |
| 316 'cros11-c2', | 232 'cros11-c2', |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 'build213-m2', | 331 'build213-m2', |
| 416 'build244-m2', | 332 'build244-m2', |
| 417 ], | 333 ], |
| 418 }, | 334 }, |
| 419 { | 335 { |
| 420 'builddir': u'pre-cq', | 336 'builddir': u'pre-cq', |
| 421 'category': '2precq full|info', | 337 'category': '2precq full|info', |
| 422 'factory': BuildFactory { | 338 'factory': BuildFactory { |
| 423 steps: [ | 339 steps: [ |
| 424 ( | 340 ( |
| 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>, | 341 <class master.chromium_step.AnnotatedCommand>, |
| 453 { | 342 { |
| 343 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 454 'command': [ | 344 'command': [ |
| 455 'chromite/bin/cbuildbot', | 345 'python', |
| 456 <buildbot.process.properties.WithProperties instance>, | 346 '-u', |
| 457 <master.master_utils.ConditionalProperty instance>, | 347 '../../../scripts/slave/annotated_run.py', |
| 458 <master.master_utils.ConditionalProperty instance>, | 348 <master.factory.commands.WithJsonProperties instance>, |
| 459 <buildbot.process.properties.Property instance>, | 349 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 460 <master.master_utils.ConditionalProperty instance>, | |
| 461 <buildbot.process.properties.WithProperties instance>, | |
| 462 ], | 350 ], |
| 463 'description': 'cbuildbot', | 351 'description': 'running steps via annotated script', |
| 352 'haltOnFailure': True, |
| 464 'maxTime': 57600, | 353 'maxTime': 57600, |
| 465 'name': 'cbuildbot', | 354 'name': 'steps', |
| 466 'timeout': 9000, | 355 'timeout': 9000, |
| 467 'usePTY': False, | |
| 468 }, | 356 }, |
| 469 ), | 357 ), |
| 470 ], | 358 ], |
| 471 properties: Properties(**{}), | 359 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 472 }, | 360 }, |
| 473 'name': u'pre-cq', | 361 'name': u'pre-cq', |
| 474 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 362 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 475 'slavenames': [ | 363 'slavenames': [ |
| 476 'build275-m2', | 364 'build275-m2', |
| 477 'build272-m2', | 365 'build272-m2', |
| 478 'cros16-c2', | 366 'cros16-c2', |
| 479 'build218-m2', | 367 'build218-m2', |
| 480 'build231-m2', | 368 'build231-m2', |
| 481 'cros11-c2', | 369 'cros11-c2', |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 'build213-m2', | 468 'build213-m2', |
| 581 'build244-m2', | 469 'build244-m2', |
| 582 ], | 470 ], |
| 583 }, | 471 }, |
| 584 { | 472 { |
| 585 'builddir': u'wificell-pre-cq', | 473 'builddir': u'wificell-pre-cq', |
| 586 'category': '2precq full|info', | 474 'category': '2precq full|info', |
| 587 'factory': BuildFactory { | 475 'factory': BuildFactory { |
| 588 steps: [ | 476 steps: [ |
| 589 ( | 477 ( |
| 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>, | 478 <class master.chromium_step.AnnotatedCommand>, |
| 618 { | 479 { |
| 480 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 619 'command': [ | 481 'command': [ |
| 620 'chromite/bin/cbuildbot', | 482 'python', |
| 621 <buildbot.process.properties.WithProperties instance>, | 483 '-u', |
| 622 <master.master_utils.ConditionalProperty instance>, | 484 '../../../scripts/slave/annotated_run.py', |
| 623 <master.master_utils.ConditionalProperty instance>, | 485 <master.factory.commands.WithJsonProperties instance>, |
| 624 <buildbot.process.properties.Property instance>, | 486 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 625 <master.master_utils.ConditionalProperty instance>, | |
| 626 <buildbot.process.properties.WithProperties instance>, | |
| 627 ], | 487 ], |
| 628 'description': 'cbuildbot', | 488 'description': 'running steps via annotated script', |
| 489 'haltOnFailure': True, |
| 629 'maxTime': 57600, | 490 'maxTime': 57600, |
| 630 'name': 'cbuildbot', | 491 'name': 'steps', |
| 631 'timeout': 9000, | 492 'timeout': 9000, |
| 632 'usePTY': False, | |
| 633 }, | 493 }, |
| 634 ), | 494 ), |
| 635 ], | 495 ], |
| 636 properties: Properties(**{}), | 496 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 637 }, | 497 }, |
| 638 'name': u'wificell-pre-cq', | 498 'name': u'wificell-pre-cq', |
| 639 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 499 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 640 'slavenames': [ | 500 'slavenames': [ |
| 641 'build275-m2', | 501 'build275-m2', |
| 642 'build272-m2', | 502 'build272-m2', |
| 643 'build218-m2', | 503 'build218-m2', |
| 644 'build231-m2', | 504 'build231-m2', |
| 645 'build228-m2', | 505 'build228-m2', |
| 646 'cros-testing3-c2', | 506 'cros-testing3-c2', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 'build213-m2', | 555 'build213-m2', |
| 696 'build244-m2', | 556 'build244-m2', |
| 697 ], | 557 ], |
| 698 }, | 558 }, |
| 699 { | 559 { |
| 700 'builddir': u'asan', | 560 'builddir': u'asan', |
| 701 'category': '3general full|info', | 561 'category': '3general full|info', |
| 702 'factory': BuildFactory { | 562 'factory': BuildFactory { |
| 703 steps: [ | 563 steps: [ |
| 704 ( | 564 ( |
| 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>, | 565 <class master.chromium_step.AnnotatedCommand>, |
| 733 { | 566 { |
| 567 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 734 'command': [ | 568 'command': [ |
| 735 'chromite/bin/cbuildbot', | 569 'python', |
| 736 <buildbot.process.properties.WithProperties instance>, | 570 '-u', |
| 737 <master.master_utils.ConditionalProperty instance>, | 571 '../../../scripts/slave/annotated_run.py', |
| 738 <master.master_utils.ConditionalProperty instance>, | 572 <master.factory.commands.WithJsonProperties instance>, |
| 739 <buildbot.process.properties.Property instance>, | 573 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 740 <master.master_utils.ConditionalProperty instance>, | |
| 741 <buildbot.process.properties.WithProperties instance>, | |
| 742 ], | 574 ], |
| 743 'description': 'cbuildbot', | 575 'description': 'running steps via annotated script', |
| 576 'haltOnFailure': True, |
| 744 'maxTime': 57600, | 577 'maxTime': 57600, |
| 745 'name': 'cbuildbot', | 578 'name': 'steps', |
| 746 'timeout': 9000, | 579 'timeout': 9000, |
| 747 'usePTY': False, | |
| 748 }, | 580 }, |
| 749 ), | 581 ), |
| 750 ], | 582 ], |
| 751 properties: Properties(**{}), | 583 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 752 }, | 584 }, |
| 753 'name': u'asan', | 585 'name': u'asan', |
| 754 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 586 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 755 'slavenames': [ | 587 'slavenames': [ |
| 756 'build275-m2', | 588 'build275-m2', |
| 757 'build272-m2', | 589 'build272-m2', |
| 758 'cros-testing3-c2', | 590 'cros-testing3-c2', |
| 759 'build270-m2', | 591 'build270-m2', |
| 760 'build274-m2', | 592 'build274-m2', |
| 761 'cros-testing10-c2', | 593 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 778 'cros-testing1-c2', | 610 'cros-testing1-c2', |
| 779 'cros-testing9-c2', | 611 'cros-testing9-c2', |
| 780 ], | 612 ], |
| 781 }, | 613 }, |
| 782 { | 614 { |
| 783 'builddir': u'branch-util', | 615 'builddir': u'branch-util', |
| 784 'category': '3general full|info', | 616 'category': '3general full|info', |
| 785 'factory': BuildFactory { | 617 'factory': BuildFactory { |
| 786 steps: [ | 618 steps: [ |
| 787 ( | 619 ( |
| 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>, | 620 <class master.chromium_step.AnnotatedCommand>, |
| 816 { | 621 { |
| 622 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 817 'command': [ | 623 'command': [ |
| 818 'chromite/bin/cbuildbot', | 624 'python', |
| 819 <buildbot.process.properties.WithProperties instance>, | 625 '-u', |
| 820 <master.master_utils.ConditionalProperty instance>, | 626 '../../../scripts/slave/annotated_run.py', |
| 821 <master.master_utils.ConditionalProperty instance>, | 627 <master.factory.commands.WithJsonProperties instance>, |
| 822 <buildbot.process.properties.Property instance>, | 628 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 823 <master.master_utils.ConditionalProperty instance>, | |
| 824 <buildbot.process.properties.WithProperties instance>, | |
| 825 ], | 629 ], |
| 826 'description': 'cbuildbot', | 630 'description': 'running steps via annotated script', |
| 631 'haltOnFailure': True, |
| 827 'maxTime': 57600, | 632 'maxTime': 57600, |
| 828 'name': 'cbuildbot', | 633 'name': 'steps', |
| 829 'timeout': 9000, | 634 'timeout': 9000, |
| 830 'usePTY': False, | |
| 831 }, | 635 }, |
| 832 ), | 636 ), |
| 833 ], | 637 ], |
| 834 properties: Properties(**{}), | 638 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 835 }, | 639 }, |
| 836 'name': u'branch-util', | 640 'name': u'branch-util', |
| 837 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 641 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 838 'slavenames': [ | 642 'slavenames': [ |
| 839 'build275-m2', | 643 'build275-m2', |
| 840 'build272-m2', | 644 'build272-m2', |
| 841 'cros-testing3-c2', | 645 'cros-testing3-c2', |
| 842 'build270-m2', | 646 'build270-m2', |
| 843 'build274-m2', | 647 'build274-m2', |
| 844 'cros-testing10-c2', | 648 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 861 'cros-testing1-c2', | 665 'cros-testing1-c2', |
| 862 'cros-testing9-c2', | 666 'cros-testing9-c2', |
| 863 ], | 667 ], |
| 864 }, | 668 }, |
| 865 { | 669 { |
| 866 'builddir': u'chrome-perf', | 670 'builddir': u'chrome-perf', |
| 867 'category': '3general full|info', | 671 'category': '3general full|info', |
| 868 'factory': BuildFactory { | 672 'factory': BuildFactory { |
| 869 steps: [ | 673 steps: [ |
| 870 ( | 674 ( |
| 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>, | 675 <class master.chromium_step.AnnotatedCommand>, |
| 899 { | 676 { |
| 677 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 900 'command': [ | 678 'command': [ |
| 901 'chromite/bin/cbuildbot', | 679 'python', |
| 902 <buildbot.process.properties.WithProperties instance>, | 680 '-u', |
| 903 <master.master_utils.ConditionalProperty instance>, | 681 '../../../scripts/slave/annotated_run.py', |
| 904 <master.master_utils.ConditionalProperty instance>, | 682 <master.factory.commands.WithJsonProperties instance>, |
| 905 <buildbot.process.properties.Property instance>, | 683 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 906 <master.master_utils.ConditionalProperty instance>, | |
| 907 <buildbot.process.properties.WithProperties instance>, | |
| 908 ], | 684 ], |
| 909 'description': 'cbuildbot', | 685 'description': 'running steps via annotated script', |
| 686 'haltOnFailure': True, |
| 910 'maxTime': 57600, | 687 'maxTime': 57600, |
| 911 'name': 'cbuildbot', | 688 'name': 'steps', |
| 912 'timeout': 9000, | 689 'timeout': 9000, |
| 913 'usePTY': False, | |
| 914 }, | 690 }, |
| 915 ), | 691 ), |
| 916 ], | 692 ], |
| 917 properties: Properties(**{}), | 693 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 918 }, | 694 }, |
| 919 'name': u'chrome-perf', | 695 'name': u'chrome-perf', |
| 920 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 696 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 921 'slavenames': [ | 697 'slavenames': [ |
| 922 'build275-m2', | 698 'build275-m2', |
| 923 'build272-m2', | 699 'build272-m2', |
| 924 'cros-testing3-c2', | 700 'cros-testing3-c2', |
| 925 'build270-m2', | 701 'build270-m2', |
| 926 'build274-m2', | 702 'build274-m2', |
| 927 'cros-testing10-c2', | 703 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 944 'cros-testing1-c2', | 720 'cros-testing1-c2', |
| 945 'cros-testing9-c2', | 721 'cros-testing9-c2', |
| 946 ], | 722 ], |
| 947 }, | 723 }, |
| 948 { | 724 { |
| 949 'builddir': u'chrome-pfq', | 725 'builddir': u'chrome-pfq', |
| 950 'category': '3general full|info', | 726 'category': '3general full|info', |
| 951 'factory': BuildFactory { | 727 'factory': BuildFactory { |
| 952 steps: [ | 728 steps: [ |
| 953 ( | 729 ( |
| 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>, | 730 <class master.chromium_step.AnnotatedCommand>, |
| 982 { | 731 { |
| 732 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 983 'command': [ | 733 'command': [ |
| 984 'chromite/bin/cbuildbot', | 734 'python', |
| 985 <buildbot.process.properties.WithProperties instance>, | 735 '-u', |
| 986 <master.master_utils.ConditionalProperty instance>, | 736 '../../../scripts/slave/annotated_run.py', |
| 987 <master.master_utils.ConditionalProperty instance>, | 737 <master.factory.commands.WithJsonProperties instance>, |
| 988 <buildbot.process.properties.Property instance>, | 738 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 989 <master.master_utils.ConditionalProperty instance>, | |
| 990 <buildbot.process.properties.WithProperties instance>, | |
| 991 ], | 739 ], |
| 992 'description': 'cbuildbot', | 740 'description': 'running steps via annotated script', |
| 741 'haltOnFailure': True, |
| 993 'maxTime': 57600, | 742 'maxTime': 57600, |
| 994 'name': 'cbuildbot', | 743 'name': 'steps', |
| 995 'timeout': 9000, | 744 'timeout': 9000, |
| 996 'usePTY': False, | |
| 997 }, | 745 }, |
| 998 ), | 746 ), |
| 999 ], | 747 ], |
| 1000 properties: Properties(**{}), | 748 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1001 }, | 749 }, |
| 1002 'name': u'chrome-pfq', | 750 'name': u'chrome-pfq', |
| 1003 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 751 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1004 'slavenames': [ | 752 'slavenames': [ |
| 1005 'build275-m2', | 753 'build275-m2', |
| 1006 'build272-m2', | 754 'build272-m2', |
| 1007 'cros-testing3-c2', | 755 'cros-testing3-c2', |
| 1008 'build270-m2', | 756 'build270-m2', |
| 1009 'build274-m2', | 757 'build274-m2', |
| 1010 'cros-testing10-c2', | 758 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1027 'cros-testing1-c2', | 775 'cros-testing1-c2', |
| 1028 'cros-testing9-c2', | 776 'cros-testing9-c2', |
| 1029 ], | 777 ], |
| 1030 }, | 778 }, |
| 1031 { | 779 { |
| 1032 'builddir': u'chrome-pfq-informational', | 780 'builddir': u'chrome-pfq-informational', |
| 1033 'category': '3general full|info', | 781 'category': '3general full|info', |
| 1034 'factory': BuildFactory { | 782 'factory': BuildFactory { |
| 1035 steps: [ | 783 steps: [ |
| 1036 ( | 784 ( |
| 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>, | 785 <class master.chromium_step.AnnotatedCommand>, |
| 1065 { | 786 { |
| 787 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1066 'command': [ | 788 'command': [ |
| 1067 'chromite/bin/cbuildbot', | 789 'python', |
| 1068 <buildbot.process.properties.WithProperties instance>, | 790 '-u', |
| 1069 <master.master_utils.ConditionalProperty instance>, | 791 '../../../scripts/slave/annotated_run.py', |
| 1070 <master.master_utils.ConditionalProperty instance>, | 792 <master.factory.commands.WithJsonProperties instance>, |
| 1071 <buildbot.process.properties.Property instance>, | 793 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1072 <master.master_utils.ConditionalProperty instance>, | |
| 1073 <buildbot.process.properties.WithProperties instance>, | |
| 1074 ], | 794 ], |
| 1075 'description': 'cbuildbot', | 795 'description': 'running steps via annotated script', |
| 796 'haltOnFailure': True, |
| 1076 'maxTime': 57600, | 797 'maxTime': 57600, |
| 1077 'name': 'cbuildbot', | 798 'name': 'steps', |
| 1078 'timeout': 9000, | 799 'timeout': 9000, |
| 1079 'usePTY': False, | |
| 1080 }, | 800 }, |
| 1081 ), | 801 ), |
| 1082 ], | 802 ], |
| 1083 properties: Properties(**{}), | 803 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1084 }, | 804 }, |
| 1085 'name': u'chrome-pfq-informational', | 805 'name': u'chrome-pfq-informational', |
| 1086 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 806 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1087 'slavenames': [ | 807 'slavenames': [ |
| 1088 'build275-m2', | 808 'build275-m2', |
| 1089 'build272-m2', | 809 'build272-m2', |
| 1090 'cros-testing3-c2', | 810 'cros-testing3-c2', |
| 1091 'build270-m2', | 811 'build270-m2', |
| 1092 'build274-m2', | 812 'build274-m2', |
| 1093 'cros-testing10-c2', | 813 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1110 'cros-testing1-c2', | 830 'cros-testing1-c2', |
| 1111 'cros-testing9-c2', | 831 'cros-testing9-c2', |
| 1112 ], | 832 ], |
| 1113 }, | 833 }, |
| 1114 { | 834 { |
| 1115 'builddir': u'chromium-pfq', | 835 'builddir': u'chromium-pfq', |
| 1116 'category': '3general full|info', | 836 'category': '3general full|info', |
| 1117 'factory': BuildFactory { | 837 'factory': BuildFactory { |
| 1118 steps: [ | 838 steps: [ |
| 1119 ( | 839 ( |
| 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>, | 840 <class master.chromium_step.AnnotatedCommand>, |
| 1148 { | 841 { |
| 842 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1149 'command': [ | 843 'command': [ |
| 1150 'chromite/bin/cbuildbot', | 844 'python', |
| 1151 <buildbot.process.properties.WithProperties instance>, | 845 '-u', |
| 1152 <master.master_utils.ConditionalProperty instance>, | 846 '../../../scripts/slave/annotated_run.py', |
| 1153 <master.master_utils.ConditionalProperty instance>, | 847 <master.factory.commands.WithJsonProperties instance>, |
| 1154 <buildbot.process.properties.Property instance>, | 848 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1155 <master.master_utils.ConditionalProperty instance>, | |
| 1156 <buildbot.process.properties.WithProperties instance>, | |
| 1157 ], | 849 ], |
| 1158 'description': 'cbuildbot', | 850 'description': 'running steps via annotated script', |
| 851 'haltOnFailure': True, |
| 1159 'maxTime': 57600, | 852 'maxTime': 57600, |
| 1160 'name': 'cbuildbot', | 853 'name': 'steps', |
| 1161 'timeout': 9000, | 854 'timeout': 9000, |
| 1162 'usePTY': False, | |
| 1163 }, | 855 }, |
| 1164 ), | 856 ), |
| 1165 ], | 857 ], |
| 1166 properties: Properties(**{}), | 858 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1167 }, | 859 }, |
| 1168 'name': u'chromium-pfq', | 860 'name': u'chromium-pfq', |
| 1169 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 861 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1170 'slavenames': [ | 862 'slavenames': [ |
| 1171 'build275-m2', | 863 'build275-m2', |
| 1172 'build272-m2', | 864 'build272-m2', |
| 1173 'cros-testing3-c2', | 865 'cros-testing3-c2', |
| 1174 'build270-m2', | 866 'build270-m2', |
| 1175 'build274-m2', | 867 'build274-m2', |
| 1176 'cros-testing10-c2', | 868 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1193 'cros-testing1-c2', | 885 'cros-testing1-c2', |
| 1194 'cros-testing9-c2', | 886 'cros-testing9-c2', |
| 1195 ], | 887 ], |
| 1196 }, | 888 }, |
| 1197 { | 889 { |
| 1198 'builddir': u'chromium-pfq-informational', | 890 'builddir': u'chromium-pfq-informational', |
| 1199 'category': '3general full|info', | 891 'category': '3general full|info', |
| 1200 'factory': BuildFactory { | 892 'factory': BuildFactory { |
| 1201 steps: [ | 893 steps: [ |
| 1202 ( | 894 ( |
| 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>, | 895 <class master.chromium_step.AnnotatedCommand>, |
| 1231 { | 896 { |
| 897 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1232 'command': [ | 898 'command': [ |
| 1233 'chromite/bin/cbuildbot', | 899 'python', |
| 1234 <buildbot.process.properties.WithProperties instance>, | 900 '-u', |
| 1235 <master.master_utils.ConditionalProperty instance>, | 901 '../../../scripts/slave/annotated_run.py', |
| 1236 <master.master_utils.ConditionalProperty instance>, | 902 <master.factory.commands.WithJsonProperties instance>, |
| 1237 <buildbot.process.properties.Property instance>, | 903 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1238 <master.master_utils.ConditionalProperty instance>, | |
| 1239 <buildbot.process.properties.WithProperties instance>, | |
| 1240 ], | 904 ], |
| 1241 'description': 'cbuildbot', | 905 'description': 'running steps via annotated script', |
| 906 'haltOnFailure': True, |
| 1242 'maxTime': 57600, | 907 'maxTime': 57600, |
| 1243 'name': 'cbuildbot', | 908 'name': 'steps', |
| 1244 'timeout': 9000, | 909 'timeout': 9000, |
| 1245 'usePTY': False, | |
| 1246 }, | 910 }, |
| 1247 ), | 911 ), |
| 1248 ], | 912 ], |
| 1249 properties: Properties(**{}), | 913 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1250 }, | 914 }, |
| 1251 'name': u'chromium-pfq-informational', | 915 'name': u'chromium-pfq-informational', |
| 1252 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 916 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1253 'slavenames': [ | 917 'slavenames': [ |
| 1254 'build275-m2', | 918 'build275-m2', |
| 1255 'build272-m2', | 919 'build272-m2', |
| 1256 'cros-testing3-c2', | 920 'cros-testing3-c2', |
| 1257 'build270-m2', | 921 'build270-m2', |
| 1258 'build274-m2', | 922 'build274-m2', |
| 1259 'cros-testing10-c2', | 923 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1276 'cros-testing1-c2', | 940 'cros-testing1-c2', |
| 1277 'cros-testing9-c2', | 941 'cros-testing9-c2', |
| 1278 ], | 942 ], |
| 1279 }, | 943 }, |
| 1280 { | 944 { |
| 1281 'builddir': u'chromiumos-sdk', | 945 'builddir': u'chromiumos-sdk', |
| 1282 'category': '3general full|info', | 946 'category': '3general full|info', |
| 1283 'factory': BuildFactory { | 947 'factory': BuildFactory { |
| 1284 steps: [ | 948 steps: [ |
| 1285 ( | 949 ( |
| 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>, | 950 <class master.chromium_step.AnnotatedCommand>, |
| 1314 { | 951 { |
| 952 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1315 'command': [ | 953 'command': [ |
| 1316 'chromite/bin/cbuildbot', | 954 'python', |
| 1317 <buildbot.process.properties.WithProperties instance>, | 955 '-u', |
| 1318 <master.master_utils.ConditionalProperty instance>, | 956 '../../../scripts/slave/annotated_run.py', |
| 1319 <master.master_utils.ConditionalProperty instance>, | 957 <master.factory.commands.WithJsonProperties instance>, |
| 1320 <buildbot.process.properties.Property instance>, | 958 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1321 <master.master_utils.ConditionalProperty instance>, | |
| 1322 <buildbot.process.properties.WithProperties instance>, | |
| 1323 ], | 959 ], |
| 1324 'description': 'cbuildbot', | 960 'description': 'running steps via annotated script', |
| 961 'haltOnFailure': True, |
| 1325 'maxTime': 57600, | 962 'maxTime': 57600, |
| 1326 'name': 'cbuildbot', | 963 'name': 'steps', |
| 1327 'timeout': 9000, | 964 'timeout': 9000, |
| 1328 'usePTY': False, | |
| 1329 }, | 965 }, |
| 1330 ), | 966 ), |
| 1331 ], | 967 ], |
| 1332 properties: Properties(**{}), | 968 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1333 }, | 969 }, |
| 1334 'name': u'chromiumos-sdk', | 970 'name': u'chromiumos-sdk', |
| 1335 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 971 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1336 'slavenames': [ | 972 'slavenames': [ |
| 1337 'build275-m2', | 973 'build275-m2', |
| 1338 'build272-m2', | 974 'build272-m2', |
| 1339 'cros-testing3-c2', | 975 'cros-testing3-c2', |
| 1340 'build270-m2', | 976 'build270-m2', |
| 1341 'build274-m2', | 977 'build274-m2', |
| 1342 'cros-testing10-c2', | 978 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1359 'cros-testing1-c2', | 995 'cros-testing1-c2', |
| 1360 'cros-testing9-c2', | 996 'cros-testing9-c2', |
| 1361 ], | 997 ], |
| 1362 }, | 998 }, |
| 1363 { | 999 { |
| 1364 'builddir': u'depthcharge-firmware', | 1000 'builddir': u'depthcharge-firmware', |
| 1365 'category': '3general full|info', | 1001 'category': '3general full|info', |
| 1366 'factory': BuildFactory { | 1002 'factory': BuildFactory { |
| 1367 steps: [ | 1003 steps: [ |
| 1368 ( | 1004 ( |
| 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>, | 1005 <class master.chromium_step.AnnotatedCommand>, |
| 1397 { | 1006 { |
| 1007 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1398 'command': [ | 1008 'command': [ |
| 1399 'chromite/bin/cbuildbot', | 1009 'python', |
| 1400 <buildbot.process.properties.WithProperties instance>, | 1010 '-u', |
| 1401 <master.master_utils.ConditionalProperty instance>, | 1011 '../../../scripts/slave/annotated_run.py', |
| 1402 <master.master_utils.ConditionalProperty instance>, | 1012 <master.factory.commands.WithJsonProperties instance>, |
| 1403 <buildbot.process.properties.Property instance>, | 1013 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1404 <master.master_utils.ConditionalProperty instance>, | |
| 1405 <buildbot.process.properties.WithProperties instance>, | |
| 1406 ], | 1014 ], |
| 1407 'description': 'cbuildbot', | 1015 'description': 'running steps via annotated script', |
| 1016 'haltOnFailure': True, |
| 1408 'maxTime': 57600, | 1017 'maxTime': 57600, |
| 1409 'name': 'cbuildbot', | 1018 'name': 'steps', |
| 1410 'timeout': 9000, | 1019 'timeout': 9000, |
| 1411 'usePTY': False, | |
| 1412 }, | 1020 }, |
| 1413 ), | 1021 ), |
| 1414 ], | 1022 ], |
| 1415 properties: Properties(**{}), | 1023 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1416 }, | 1024 }, |
| 1417 'name': u'depthcharge-firmware', | 1025 'name': u'depthcharge-firmware', |
| 1418 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1026 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1419 'slavenames': [ | 1027 'slavenames': [ |
| 1420 'build275-m2', | 1028 'build275-m2', |
| 1421 'build272-m2', | 1029 'build272-m2', |
| 1422 'cros-testing3-c2', | 1030 'cros-testing3-c2', |
| 1423 'build270-m2', | 1031 'build270-m2', |
| 1424 'build274-m2', | 1032 'build274-m2', |
| 1425 'cros-testing10-c2', | 1033 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1442 'cros-testing1-c2', | 1050 'cros-testing1-c2', |
| 1443 'cros-testing9-c2', | 1051 'cros-testing9-c2', |
| 1444 ], | 1052 ], |
| 1445 }, | 1053 }, |
| 1446 { | 1054 { |
| 1447 'builddir': u'depthcharge-full-firmware', | 1055 'builddir': u'depthcharge-full-firmware', |
| 1448 'category': '3general full|info', | 1056 'category': '3general full|info', |
| 1449 'factory': BuildFactory { | 1057 'factory': BuildFactory { |
| 1450 steps: [ | 1058 steps: [ |
| 1451 ( | 1059 ( |
| 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>, | 1060 <class master.chromium_step.AnnotatedCommand>, |
| 1480 { | 1061 { |
| 1062 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1481 'command': [ | 1063 'command': [ |
| 1482 'chromite/bin/cbuildbot', | 1064 'python', |
| 1483 <buildbot.process.properties.WithProperties instance>, | 1065 '-u', |
| 1484 <master.master_utils.ConditionalProperty instance>, | 1066 '../../../scripts/slave/annotated_run.py', |
| 1485 <master.master_utils.ConditionalProperty instance>, | 1067 <master.factory.commands.WithJsonProperties instance>, |
| 1486 <buildbot.process.properties.Property instance>, | 1068 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1487 <master.master_utils.ConditionalProperty instance>, | |
| 1488 <buildbot.process.properties.WithProperties instance>, | |
| 1489 ], | 1069 ], |
| 1490 'description': 'cbuildbot', | 1070 'description': 'running steps via annotated script', |
| 1071 'haltOnFailure': True, |
| 1491 'maxTime': 57600, | 1072 'maxTime': 57600, |
| 1492 'name': 'cbuildbot', | 1073 'name': 'steps', |
| 1493 'timeout': 9000, | 1074 'timeout': 9000, |
| 1494 'usePTY': False, | |
| 1495 }, | 1075 }, |
| 1496 ), | 1076 ), |
| 1497 ], | 1077 ], |
| 1498 properties: Properties(**{}), | 1078 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1499 }, | 1079 }, |
| 1500 'name': u'depthcharge-full-firmware', | 1080 'name': u'depthcharge-full-firmware', |
| 1501 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1081 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1502 'slavenames': [ | 1082 'slavenames': [ |
| 1503 'build275-m2', | 1083 'build275-m2', |
| 1504 'build272-m2', | 1084 'build272-m2', |
| 1505 'cros-testing3-c2', | 1085 'cros-testing3-c2', |
| 1506 'build270-m2', | 1086 'build270-m2', |
| 1507 'build274-m2', | 1087 'build274-m2', |
| 1508 'cros-testing10-c2', | 1088 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1525 'cros-testing1-c2', | 1105 'cros-testing1-c2', |
| 1526 'cros-testing9-c2', | 1106 'cros-testing9-c2', |
| 1527 ], | 1107 ], |
| 1528 }, | 1108 }, |
| 1529 { | 1109 { |
| 1530 'builddir': u'factory', | 1110 'builddir': u'factory', |
| 1531 'category': '3general full|info', | 1111 'category': '3general full|info', |
| 1532 'factory': BuildFactory { | 1112 'factory': BuildFactory { |
| 1533 steps: [ | 1113 steps: [ |
| 1534 ( | 1114 ( |
| 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>, | 1115 <class master.chromium_step.AnnotatedCommand>, |
| 1563 { | 1116 { |
| 1117 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1564 'command': [ | 1118 'command': [ |
| 1565 'chromite/bin/cbuildbot', | 1119 'python', |
| 1566 <buildbot.process.properties.WithProperties instance>, | 1120 '-u', |
| 1567 <master.master_utils.ConditionalProperty instance>, | 1121 '../../../scripts/slave/annotated_run.py', |
| 1568 <master.master_utils.ConditionalProperty instance>, | 1122 <master.factory.commands.WithJsonProperties instance>, |
| 1569 <buildbot.process.properties.Property instance>, | 1123 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1570 <master.master_utils.ConditionalProperty instance>, | |
| 1571 <buildbot.process.properties.WithProperties instance>, | |
| 1572 ], | 1124 ], |
| 1573 'description': 'cbuildbot', | 1125 'description': 'running steps via annotated script', |
| 1126 'haltOnFailure': True, |
| 1574 'maxTime': 57600, | 1127 'maxTime': 57600, |
| 1575 'name': 'cbuildbot', | 1128 'name': 'steps', |
| 1576 'timeout': 9000, | 1129 'timeout': 9000, |
| 1577 'usePTY': False, | |
| 1578 }, | 1130 }, |
| 1579 ), | 1131 ), |
| 1580 ], | 1132 ], |
| 1581 properties: Properties(**{}), | 1133 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1582 }, | 1134 }, |
| 1583 'name': u'factory', | 1135 'name': u'factory', |
| 1584 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1136 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1585 'slavenames': [ | 1137 'slavenames': [ |
| 1586 'build275-m2', | 1138 'build275-m2', |
| 1587 'build272-m2', | 1139 'build272-m2', |
| 1588 'cros-testing3-c2', | 1140 'cros-testing3-c2', |
| 1589 'build270-m2', | 1141 'build270-m2', |
| 1590 'build274-m2', | 1142 'build274-m2', |
| 1591 'cros-testing10-c2', | 1143 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1608 'cros-testing1-c2', | 1160 'cros-testing1-c2', |
| 1609 'cros-testing9-c2', | 1161 'cros-testing9-c2', |
| 1610 ], | 1162 ], |
| 1611 }, | 1163 }, |
| 1612 { | 1164 { |
| 1613 'builddir': u'firmware', | 1165 'builddir': u'firmware', |
| 1614 'category': '3general full|info', | 1166 'category': '3general full|info', |
| 1615 'factory': BuildFactory { | 1167 'factory': BuildFactory { |
| 1616 steps: [ | 1168 steps: [ |
| 1617 ( | 1169 ( |
| 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>, | 1170 <class master.chromium_step.AnnotatedCommand>, |
| 1646 { | 1171 { |
| 1172 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1647 'command': [ | 1173 'command': [ |
| 1648 'chromite/bin/cbuildbot', | 1174 'python', |
| 1649 <buildbot.process.properties.WithProperties instance>, | 1175 '-u', |
| 1650 <master.master_utils.ConditionalProperty instance>, | 1176 '../../../scripts/slave/annotated_run.py', |
| 1651 <master.master_utils.ConditionalProperty instance>, | 1177 <master.factory.commands.WithJsonProperties instance>, |
| 1652 <buildbot.process.properties.Property instance>, | 1178 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1653 <master.master_utils.ConditionalProperty instance>, | |
| 1654 <buildbot.process.properties.WithProperties instance>, | |
| 1655 ], | 1179 ], |
| 1656 'description': 'cbuildbot', | 1180 'description': 'running steps via annotated script', |
| 1181 'haltOnFailure': True, |
| 1657 'maxTime': 57600, | 1182 'maxTime': 57600, |
| 1658 'name': 'cbuildbot', | 1183 'name': 'steps', |
| 1659 'timeout': 9000, | 1184 'timeout': 9000, |
| 1660 'usePTY': False, | |
| 1661 }, | 1185 }, |
| 1662 ), | 1186 ), |
| 1663 ], | 1187 ], |
| 1664 properties: Properties(**{}), | 1188 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1665 }, | 1189 }, |
| 1666 'name': u'firmware', | 1190 'name': u'firmware', |
| 1667 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1191 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1668 'slavenames': [ | 1192 'slavenames': [ |
| 1669 'build275-m2', | 1193 'build275-m2', |
| 1670 'build272-m2', | 1194 'build272-m2', |
| 1671 'cros-testing3-c2', | 1195 'cros-testing3-c2', |
| 1672 'build270-m2', | 1196 'build270-m2', |
| 1673 'build274-m2', | 1197 'build274-m2', |
| 1674 'cros-testing10-c2', | 1198 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1691 'cros-testing1-c2', | 1215 'cros-testing1-c2', |
| 1692 'cros-testing9-c2', | 1216 'cros-testing9-c2', |
| 1693 ], | 1217 ], |
| 1694 }, | 1218 }, |
| 1695 { | 1219 { |
| 1696 'builddir': u'full', | 1220 'builddir': u'full', |
| 1697 'category': '3general full|info', | 1221 'category': '3general full|info', |
| 1698 'factory': BuildFactory { | 1222 'factory': BuildFactory { |
| 1699 steps: [ | 1223 steps: [ |
| 1700 ( | 1224 ( |
| 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>, | 1225 <class master.chromium_step.AnnotatedCommand>, |
| 1729 { | 1226 { |
| 1227 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1730 'command': [ | 1228 'command': [ |
| 1731 'chromite/bin/cbuildbot', | 1229 'python', |
| 1732 <buildbot.process.properties.WithProperties instance>, | 1230 '-u', |
| 1733 <master.master_utils.ConditionalProperty instance>, | 1231 '../../../scripts/slave/annotated_run.py', |
| 1734 <master.master_utils.ConditionalProperty instance>, | 1232 <master.factory.commands.WithJsonProperties instance>, |
| 1735 <buildbot.process.properties.Property instance>, | 1233 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1736 <master.master_utils.ConditionalProperty instance>, | |
| 1737 <buildbot.process.properties.WithProperties instance>, | |
| 1738 ], | 1234 ], |
| 1739 'description': 'cbuildbot', | 1235 'description': 'running steps via annotated script', |
| 1236 'haltOnFailure': True, |
| 1740 'maxTime': 57600, | 1237 'maxTime': 57600, |
| 1741 'name': 'cbuildbot', | 1238 'name': 'steps', |
| 1742 'timeout': 9000, | 1239 'timeout': 9000, |
| 1743 'usePTY': False, | |
| 1744 }, | 1240 }, |
| 1745 ), | 1241 ), |
| 1746 ], | 1242 ], |
| 1747 properties: Properties(**{}), | 1243 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1748 }, | 1244 }, |
| 1749 'name': u'full', | 1245 'name': u'full', |
| 1750 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1246 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1751 'slavenames': [ | 1247 'slavenames': [ |
| 1752 'build275-m2', | 1248 'build275-m2', |
| 1753 'build272-m2', | 1249 'build272-m2', |
| 1754 'cros-testing3-c2', | 1250 'cros-testing3-c2', |
| 1755 'build270-m2', | 1251 'build270-m2', |
| 1756 'build274-m2', | 1252 'build274-m2', |
| 1757 'cros-testing10-c2', | 1253 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1774 'cros-testing1-c2', | 1270 'cros-testing1-c2', |
| 1775 'cros-testing9-c2', | 1271 'cros-testing9-c2', |
| 1776 ], | 1272 ], |
| 1777 }, | 1273 }, |
| 1778 { | 1274 { |
| 1779 'builddir': u'incremental', | 1275 'builddir': u'incremental', |
| 1780 'category': '3general full|info', | 1276 'category': '3general full|info', |
| 1781 'factory': BuildFactory { | 1277 'factory': BuildFactory { |
| 1782 steps: [ | 1278 steps: [ |
| 1783 ( | 1279 ( |
| 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>, | 1280 <class master.chromium_step.AnnotatedCommand>, |
| 1812 { | 1281 { |
| 1282 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1813 'command': [ | 1283 'command': [ |
| 1814 'chromite/bin/cbuildbot', | 1284 'python', |
| 1815 <buildbot.process.properties.WithProperties instance>, | 1285 '-u', |
| 1816 <master.master_utils.ConditionalProperty instance>, | 1286 '../../../scripts/slave/annotated_run.py', |
| 1817 <master.master_utils.ConditionalProperty instance>, | 1287 <master.factory.commands.WithJsonProperties instance>, |
| 1818 <buildbot.process.properties.Property instance>, | 1288 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1819 <master.master_utils.ConditionalProperty instance>, | |
| 1820 <buildbot.process.properties.WithProperties instance>, | |
| 1821 ], | 1289 ], |
| 1822 'description': 'cbuildbot', | 1290 'description': 'running steps via annotated script', |
| 1291 'haltOnFailure': True, |
| 1823 'maxTime': 57600, | 1292 'maxTime': 57600, |
| 1824 'name': 'cbuildbot', | 1293 'name': 'steps', |
| 1825 'timeout': 9000, | 1294 'timeout': 9000, |
| 1826 'usePTY': False, | |
| 1827 }, | 1295 }, |
| 1828 ), | 1296 ), |
| 1829 ], | 1297 ], |
| 1830 properties: Properties(**{}), | 1298 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1831 }, | 1299 }, |
| 1832 'name': u'incremental', | 1300 'name': u'incremental', |
| 1833 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1301 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1834 'slavenames': [ | 1302 'slavenames': [ |
| 1835 'build275-m2', | 1303 'build275-m2', |
| 1836 'build272-m2', | 1304 'build272-m2', |
| 1837 'cros-testing3-c2', | 1305 'cros-testing3-c2', |
| 1838 'build270-m2', | 1306 'build270-m2', |
| 1839 'build274-m2', | 1307 'build274-m2', |
| 1840 'cros-testing10-c2', | 1308 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1857 'cros-testing1-c2', | 1325 'cros-testing1-c2', |
| 1858 'cros-testing9-c2', | 1326 'cros-testing9-c2', |
| 1859 ], | 1327 ], |
| 1860 }, | 1328 }, |
| 1861 { | 1329 { |
| 1862 'builddir': u'internal-toolchain-major', | 1330 'builddir': u'internal-toolchain-major', |
| 1863 'category': '3general full|info', | 1331 'category': '3general full|info', |
| 1864 'factory': BuildFactory { | 1332 'factory': BuildFactory { |
| 1865 steps: [ | 1333 steps: [ |
| 1866 ( | 1334 ( |
| 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>, | 1335 <class master.chromium_step.AnnotatedCommand>, |
| 1895 { | 1336 { |
| 1337 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1896 'command': [ | 1338 'command': [ |
| 1897 'chromite/bin/cbuildbot', | 1339 'python', |
| 1898 <buildbot.process.properties.WithProperties instance>, | 1340 '-u', |
| 1899 <master.master_utils.ConditionalProperty instance>, | 1341 '../../../scripts/slave/annotated_run.py', |
| 1900 <master.master_utils.ConditionalProperty instance>, | 1342 <master.factory.commands.WithJsonProperties instance>, |
| 1901 <buildbot.process.properties.Property instance>, | 1343 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1902 <master.master_utils.ConditionalProperty instance>, | |
| 1903 <buildbot.process.properties.WithProperties instance>, | |
| 1904 ], | 1344 ], |
| 1905 'description': 'cbuildbot', | 1345 'description': 'running steps via annotated script', |
| 1346 'haltOnFailure': True, |
| 1906 'maxTime': 57600, | 1347 'maxTime': 57600, |
| 1907 'name': 'cbuildbot', | 1348 'name': 'steps', |
| 1908 'timeout': 9000, | 1349 'timeout': 9000, |
| 1909 'usePTY': False, | |
| 1910 }, | 1350 }, |
| 1911 ), | 1351 ), |
| 1912 ], | 1352 ], |
| 1913 properties: Properties(**{}), | 1353 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1914 }, | 1354 }, |
| 1915 'name': u'internal-toolchain-major', | 1355 'name': u'internal-toolchain-major', |
| 1916 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1356 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 1917 'slavenames': [ | 1357 'slavenames': [ |
| 1918 'build275-m2', | 1358 'build275-m2', |
| 1919 'build272-m2', | 1359 'build272-m2', |
| 1920 'cros-testing3-c2', | 1360 'cros-testing3-c2', |
| 1921 'build270-m2', | 1361 'build270-m2', |
| 1922 'build274-m2', | 1362 'build274-m2', |
| 1923 'cros-testing10-c2', | 1363 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1940 'cros-testing1-c2', | 1380 'cros-testing1-c2', |
| 1941 'cros-testing9-c2', | 1381 'cros-testing9-c2', |
| 1942 ], | 1382 ], |
| 1943 }, | 1383 }, |
| 1944 { | 1384 { |
| 1945 'builddir': u'internal-toolchain-minor', | 1385 'builddir': u'internal-toolchain-minor', |
| 1946 'category': '3general full|info', | 1386 'category': '3general full|info', |
| 1947 'factory': BuildFactory { | 1387 'factory': BuildFactory { |
| 1948 steps: [ | 1388 steps: [ |
| 1949 ( | 1389 ( |
| 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>, | 1390 <class master.chromium_step.AnnotatedCommand>, |
| 1978 { | 1391 { |
| 1392 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 1979 'command': [ | 1393 'command': [ |
| 1980 'chromite/bin/cbuildbot', | 1394 'python', |
| 1981 <buildbot.process.properties.WithProperties instance>, | 1395 '-u', |
| 1982 <master.master_utils.ConditionalProperty instance>, | 1396 '../../../scripts/slave/annotated_run.py', |
| 1983 <master.master_utils.ConditionalProperty instance>, | 1397 <master.factory.commands.WithJsonProperties instance>, |
| 1984 <buildbot.process.properties.Property instance>, | 1398 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 1985 <master.master_utils.ConditionalProperty instance>, | |
| 1986 <buildbot.process.properties.WithProperties instance>, | |
| 1987 ], | 1399 ], |
| 1988 'description': 'cbuildbot', | 1400 'description': 'running steps via annotated script', |
| 1401 'haltOnFailure': True, |
| 1989 'maxTime': 57600, | 1402 'maxTime': 57600, |
| 1990 'name': 'cbuildbot', | 1403 'name': 'steps', |
| 1991 'timeout': 9000, | 1404 'timeout': 9000, |
| 1992 'usePTY': False, | |
| 1993 }, | 1405 }, |
| 1994 ), | 1406 ), |
| 1995 ], | 1407 ], |
| 1996 properties: Properties(**{}), | 1408 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 1997 }, | 1409 }, |
| 1998 'name': u'internal-toolchain-minor', | 1410 'name': u'internal-toolchain-minor', |
| 1999 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1411 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2000 'slavenames': [ | 1412 'slavenames': [ |
| 2001 'build275-m2', | 1413 'build275-m2', |
| 2002 'build272-m2', | 1414 'build272-m2', |
| 2003 'cros-testing3-c2', | 1415 'cros-testing3-c2', |
| 2004 'build270-m2', | 1416 'build270-m2', |
| 2005 'build274-m2', | 1417 'build274-m2', |
| 2006 'cros-testing10-c2', | 1418 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 2023 'cros-testing1-c2', | 1435 'cros-testing1-c2', |
| 2024 'cros-testing9-c2', | 1436 'cros-testing9-c2', |
| 2025 ], | 1437 ], |
| 2026 }, | 1438 }, |
| 2027 { | 1439 { |
| 2028 'builddir': u'llvm', | 1440 'builddir': u'llvm', |
| 2029 'category': '3general full|info', | 1441 'category': '3general full|info', |
| 2030 'factory': BuildFactory { | 1442 'factory': BuildFactory { |
| 2031 steps: [ | 1443 steps: [ |
| 2032 ( | 1444 ( |
| 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>, | 1445 <class master.chromium_step.AnnotatedCommand>, |
| 2061 { | 1446 { |
| 1447 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2062 'command': [ | 1448 'command': [ |
| 2063 'chromite/bin/cbuildbot', | 1449 'python', |
| 2064 <buildbot.process.properties.WithProperties instance>, | 1450 '-u', |
| 2065 <master.master_utils.ConditionalProperty instance>, | 1451 '../../../scripts/slave/annotated_run.py', |
| 2066 <master.master_utils.ConditionalProperty instance>, | 1452 <master.factory.commands.WithJsonProperties instance>, |
| 2067 <buildbot.process.properties.Property instance>, | 1453 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2068 <master.master_utils.ConditionalProperty instance>, | |
| 2069 <buildbot.process.properties.WithProperties instance>, | |
| 2070 ], | 1454 ], |
| 2071 'description': 'cbuildbot', | 1455 'description': 'running steps via annotated script', |
| 1456 'haltOnFailure': True, |
| 2072 'maxTime': 57600, | 1457 'maxTime': 57600, |
| 2073 'name': 'cbuildbot', | 1458 'name': 'steps', |
| 2074 'timeout': 9000, | 1459 'timeout': 9000, |
| 2075 'usePTY': False, | |
| 2076 }, | 1460 }, |
| 2077 ), | 1461 ), |
| 2078 ], | 1462 ], |
| 2079 properties: Properties(**{}), | 1463 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2080 }, | 1464 }, |
| 2081 'name': u'llvm', | 1465 'name': u'llvm', |
| 2082 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1466 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2083 'slavenames': [ | 1467 'slavenames': [ |
| 2084 'build275-m2', | 1468 'build275-m2', |
| 2085 'build272-m2', | 1469 'build272-m2', |
| 2086 'cros-testing3-c2', | 1470 'cros-testing3-c2', |
| 2087 'build270-m2', | 1471 'build270-m2', |
| 2088 'build274-m2', | 1472 'build274-m2', |
| 2089 'cros-testing10-c2', | 1473 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 2106 'cros-testing1-c2', | 1490 'cros-testing1-c2', |
| 2107 'cros-testing9-c2', | 1491 'cros-testing9-c2', |
| 2108 ], | 1492 ], |
| 2109 }, | 1493 }, |
| 2110 { | 1494 { |
| 2111 'builddir': u'paladin', | 1495 'builddir': u'paladin', |
| 2112 'category': '3general full|info', | 1496 'category': '3general full|info', |
| 2113 'factory': BuildFactory { | 1497 'factory': BuildFactory { |
| 2114 steps: [ | 1498 steps: [ |
| 2115 ( | 1499 ( |
| 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>, | 1500 <class master.chromium_step.AnnotatedCommand>, |
| 2144 { | 1501 { |
| 1502 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2145 'command': [ | 1503 'command': [ |
| 2146 'chromite/bin/cbuildbot', | 1504 'python', |
| 2147 <buildbot.process.properties.WithProperties instance>, | 1505 '-u', |
| 2148 <master.master_utils.ConditionalProperty instance>, | 1506 '../../../scripts/slave/annotated_run.py', |
| 2149 <master.master_utils.ConditionalProperty instance>, | 1507 <master.factory.commands.WithJsonProperties instance>, |
| 2150 <buildbot.process.properties.Property instance>, | 1508 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2151 <master.master_utils.ConditionalProperty instance>, | |
| 2152 <buildbot.process.properties.WithProperties instance>, | |
| 2153 ], | 1509 ], |
| 2154 'description': 'cbuildbot', | 1510 'description': 'running steps via annotated script', |
| 1511 'haltOnFailure': True, |
| 2155 'maxTime': 57600, | 1512 'maxTime': 57600, |
| 2156 'name': 'cbuildbot', | 1513 'name': 'steps', |
| 2157 'timeout': 9000, | 1514 'timeout': 9000, |
| 2158 'usePTY': False, | |
| 2159 }, | 1515 }, |
| 2160 ), | 1516 ), |
| 2161 ], | 1517 ], |
| 2162 properties: Properties(**{}), | 1518 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2163 }, | 1519 }, |
| 2164 'name': u'paladin', | 1520 'name': u'paladin', |
| 2165 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1521 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2166 'slavenames': [ | 1522 'slavenames': [ |
| 2167 'build275-m2', | 1523 'build275-m2', |
| 2168 'build272-m2', | 1524 'build272-m2', |
| 2169 'cros-testing3-c2', | 1525 'cros-testing3-c2', |
| 2170 'build270-m2', | 1526 'build270-m2', |
| 2171 'build274-m2', | 1527 'build274-m2', |
| 2172 'cros-testing10-c2', | 1528 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 2189 'cros-testing1-c2', | 1545 'cros-testing1-c2', |
| 2190 'cros-testing9-c2', | 1546 'cros-testing9-c2', |
| 2191 ], | 1547 ], |
| 2192 }, | 1548 }, |
| 2193 { | 1549 { |
| 2194 'builddir': u'payloads', | 1550 'builddir': u'payloads', |
| 2195 'category': '3general full|info', | 1551 'category': '3general full|info', |
| 2196 'factory': BuildFactory { | 1552 'factory': BuildFactory { |
| 2197 steps: [ | 1553 steps: [ |
| 2198 ( | 1554 ( |
| 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>, | 1555 <class master.chromium_step.AnnotatedCommand>, |
| 2227 { | 1556 { |
| 1557 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2228 'command': [ | 1558 'command': [ |
| 2229 'chromite/bin/cbuildbot', | 1559 'python', |
| 2230 <buildbot.process.properties.WithProperties instance>, | 1560 '-u', |
| 2231 <master.master_utils.ConditionalProperty instance>, | 1561 '../../../scripts/slave/annotated_run.py', |
| 2232 <master.master_utils.ConditionalProperty instance>, | 1562 <master.factory.commands.WithJsonProperties instance>, |
| 2233 <buildbot.process.properties.Property instance>, | 1563 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2234 <master.master_utils.ConditionalProperty instance>, | |
| 2235 <buildbot.process.properties.WithProperties instance>, | |
| 2236 ], | 1564 ], |
| 2237 'description': 'cbuildbot', | 1565 'description': 'running steps via annotated script', |
| 1566 'haltOnFailure': True, |
| 2238 'maxTime': 57600, | 1567 'maxTime': 57600, |
| 2239 'name': 'cbuildbot', | 1568 'name': 'steps', |
| 2240 'timeout': 9000, | 1569 'timeout': 9000, |
| 2241 'usePTY': False, | |
| 2242 }, | 1570 }, |
| 2243 ), | 1571 ), |
| 2244 ], | 1572 ], |
| 2245 properties: Properties(**{}), | 1573 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2246 }, | 1574 }, |
| 2247 'name': u'payloads', | 1575 'name': u'payloads', |
| 2248 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1576 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2249 'slavenames': [ | 1577 'slavenames': [ |
| 2250 'build275-m2', | 1578 'build275-m2', |
| 2251 'build272-m2', | 1579 'build272-m2', |
| 2252 'cros-testing3-c2', | 1580 'cros-testing3-c2', |
| 2253 'build270-m2', | 1581 'build270-m2', |
| 2254 'build274-m2', | 1582 'build274-m2', |
| 2255 'cros-testing10-c2', | 1583 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 2272 'cros-testing1-c2', | 1600 'cros-testing1-c2', |
| 2273 'cros-testing9-c2', | 1601 'cros-testing9-c2', |
| 2274 ], | 1602 ], |
| 2275 }, | 1603 }, |
| 2276 { | 1604 { |
| 2277 'builddir': u'pre-cq-launcher', | 1605 'builddir': u'pre-cq-launcher', |
| 2278 'category': '3general full|info', | 1606 'category': '3general full|info', |
| 2279 'factory': BuildFactory { | 1607 'factory': BuildFactory { |
| 2280 steps: [ | 1608 steps: [ |
| 2281 ( | 1609 ( |
| 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>, | 1610 <class master.chromium_step.AnnotatedCommand>, |
| 2310 { | 1611 { |
| 1612 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2311 'command': [ | 1613 'command': [ |
| 2312 'chromite/bin/cbuildbot', | 1614 'python', |
| 2313 <buildbot.process.properties.WithProperties instance>, | 1615 '-u', |
| 2314 <master.master_utils.ConditionalProperty instance>, | 1616 '../../../scripts/slave/annotated_run.py', |
| 2315 <master.master_utils.ConditionalProperty instance>, | 1617 <master.factory.commands.WithJsonProperties instance>, |
| 2316 <buildbot.process.properties.Property instance>, | 1618 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2317 <master.master_utils.ConditionalProperty instance>, | |
| 2318 <buildbot.process.properties.WithProperties instance>, | |
| 2319 ], | 1619 ], |
| 2320 'description': 'cbuildbot', | 1620 'description': 'running steps via annotated script', |
| 1621 'haltOnFailure': True, |
| 2321 'maxTime': 57600, | 1622 'maxTime': 57600, |
| 2322 'name': 'cbuildbot', | 1623 'name': 'steps', |
| 2323 'timeout': 9000, | 1624 'timeout': 9000, |
| 2324 'usePTY': False, | |
| 2325 }, | 1625 }, |
| 2326 ), | 1626 ), |
| 2327 ], | 1627 ], |
| 2328 properties: Properties(**{}), | 1628 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2329 }, | 1629 }, |
| 2330 'name': u'pre-cq-launcher', | 1630 'name': u'pre-cq-launcher', |
| 2331 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1631 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2332 'slavenames': [ | 1632 'slavenames': [ |
| 2333 'build275-m2', | 1633 'build275-m2', |
| 2334 'build272-m2', | 1634 'build272-m2', |
| 2335 'cros-testing3-c2', | 1635 'cros-testing3-c2', |
| 2336 'build270-m2', | 1636 'build270-m2', |
| 2337 'build274-m2', | 1637 'build274-m2', |
| 2338 'cros-testing10-c2', | 1638 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 2355 'cros-testing1-c2', | 1655 'cros-testing1-c2', |
| 2356 'cros-testing9-c2', | 1656 'cros-testing9-c2', |
| 2357 ], | 1657 ], |
| 2358 }, | 1658 }, |
| 2359 { | 1659 { |
| 2360 'builddir': u'pre-flight-branch', | 1660 'builddir': u'pre-flight-branch', |
| 2361 'category': '3general full|info', | 1661 'category': '3general full|info', |
| 2362 'factory': BuildFactory { | 1662 'factory': BuildFactory { |
| 2363 steps: [ | 1663 steps: [ |
| 2364 ( | 1664 ( |
| 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>, | 1665 <class master.chromium_step.AnnotatedCommand>, |
| 2393 { | 1666 { |
| 1667 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2394 'command': [ | 1668 'command': [ |
| 2395 'chromite/bin/cbuildbot', | 1669 'python', |
| 2396 <buildbot.process.properties.WithProperties instance>, | 1670 '-u', |
| 2397 <master.master_utils.ConditionalProperty instance>, | 1671 '../../../scripts/slave/annotated_run.py', |
| 2398 <master.master_utils.ConditionalProperty instance>, | 1672 <master.factory.commands.WithJsonProperties instance>, |
| 2399 <buildbot.process.properties.Property instance>, | 1673 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2400 <master.master_utils.ConditionalProperty instance>, | |
| 2401 <buildbot.process.properties.WithProperties instance>, | |
| 2402 ], | 1674 ], |
| 2403 'description': 'cbuildbot', | 1675 'description': 'running steps via annotated script', |
| 1676 'haltOnFailure': True, |
| 2404 'maxTime': 57600, | 1677 'maxTime': 57600, |
| 2405 'name': 'cbuildbot', | 1678 'name': 'steps', |
| 2406 'timeout': 9000, | 1679 'timeout': 9000, |
| 2407 'usePTY': False, | |
| 2408 }, | 1680 }, |
| 2409 ), | 1681 ), |
| 2410 ], | 1682 ], |
| 2411 properties: Properties(**{}), | 1683 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2412 }, | 1684 }, |
| 2413 'name': u'pre-flight-branch', | 1685 'name': u'pre-flight-branch', |
| 2414 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1686 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2415 'slavenames': [ | 1687 'slavenames': [ |
| 2416 'build275-m2', | 1688 'build275-m2', |
| 2417 'build272-m2', | 1689 'build272-m2', |
| 2418 'cros-testing3-c2', | 1690 'cros-testing3-c2', |
| 2419 'build270-m2', | 1691 'build270-m2', |
| 2420 'build274-m2', | 1692 'build274-m2', |
| 2421 'cros-testing10-c2', | 1693 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 2438 'cros-testing1-c2', | 1710 'cros-testing1-c2', |
| 2439 'cros-testing9-c2', | 1711 'cros-testing9-c2', |
| 2440 ], | 1712 ], |
| 2441 }, | 1713 }, |
| 2442 { | 1714 { |
| 2443 'builddir': u'refresh-packages', | 1715 'builddir': u'refresh-packages', |
| 2444 'category': '3general full|info', | 1716 'category': '3general full|info', |
| 2445 'factory': BuildFactory { | 1717 'factory': BuildFactory { |
| 2446 steps: [ | 1718 steps: [ |
| 2447 ( | 1719 ( |
| 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>, | 1720 <class master.chromium_step.AnnotatedCommand>, |
| 2476 { | 1721 { |
| 1722 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2477 'command': [ | 1723 'command': [ |
| 2478 'chromite/bin/cbuildbot', | 1724 'python', |
| 2479 <buildbot.process.properties.WithProperties instance>, | 1725 '-u', |
| 2480 <master.master_utils.ConditionalProperty instance>, | 1726 '../../../scripts/slave/annotated_run.py', |
| 2481 <master.master_utils.ConditionalProperty instance>, | 1727 <master.factory.commands.WithJsonProperties instance>, |
| 2482 <buildbot.process.properties.Property instance>, | 1728 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2483 <master.master_utils.ConditionalProperty instance>, | |
| 2484 <buildbot.process.properties.WithProperties instance>, | |
| 2485 ], | 1729 ], |
| 2486 'description': 'cbuildbot', | 1730 'description': 'running steps via annotated script', |
| 1731 'haltOnFailure': True, |
| 2487 'maxTime': 57600, | 1732 'maxTime': 57600, |
| 2488 'name': 'cbuildbot', | 1733 'name': 'steps', |
| 2489 'timeout': 9000, | 1734 'timeout': 9000, |
| 2490 'usePTY': False, | |
| 2491 }, | 1735 }, |
| 2492 ), | 1736 ), |
| 2493 ], | 1737 ], |
| 2494 properties: Properties(**{}), | 1738 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2495 }, | 1739 }, |
| 2496 'name': u'refresh-packages', | 1740 'name': u'refresh-packages', |
| 2497 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1741 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2498 'slavenames': [ | 1742 'slavenames': [ |
| 2499 'build275-m2', | 1743 'build275-m2', |
| 2500 'build272-m2', | 1744 'build272-m2', |
| 2501 'cros-testing3-c2', | 1745 'cros-testing3-c2', |
| 2502 'build270-m2', | 1746 'build270-m2', |
| 2503 'build274-m2', | 1747 'build274-m2', |
| 2504 'cros-testing10-c2', | 1748 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 2521 'cros-testing1-c2', | 1765 'cros-testing1-c2', |
| 2522 'cros-testing9-c2', | 1766 'cros-testing9-c2', |
| 2523 ], | 1767 ], |
| 2524 }, | 1768 }, |
| 2525 { | 1769 { |
| 2526 'builddir': u'release', | 1770 'builddir': u'release', |
| 2527 'category': '3general full|info', | 1771 'category': '3general full|info', |
| 2528 'factory': BuildFactory { | 1772 'factory': BuildFactory { |
| 2529 steps: [ | 1773 steps: [ |
| 2530 ( | 1774 ( |
| 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>, | 1775 <class master.chromium_step.AnnotatedCommand>, |
| 2559 { | 1776 { |
| 1777 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2560 'command': [ | 1778 'command': [ |
| 2561 'chromite/bin/cbuildbot', | 1779 'python', |
| 2562 <buildbot.process.properties.WithProperties instance>, | 1780 '-u', |
| 2563 <master.master_utils.ConditionalProperty instance>, | 1781 '../../../scripts/slave/annotated_run.py', |
| 2564 <master.master_utils.ConditionalProperty instance>, | 1782 <master.factory.commands.WithJsonProperties instance>, |
| 2565 <buildbot.process.properties.Property instance>, | 1783 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2566 <master.master_utils.ConditionalProperty instance>, | |
| 2567 <buildbot.process.properties.WithProperties instance>, | |
| 2568 ], | 1784 ], |
| 2569 'description': 'cbuildbot', | 1785 'description': 'running steps via annotated script', |
| 1786 'haltOnFailure': True, |
| 2570 'maxTime': 57600, | 1787 'maxTime': 57600, |
| 2571 'name': 'cbuildbot', | 1788 'name': 'steps', |
| 2572 'timeout': 9000, | 1789 'timeout': 9000, |
| 2573 'usePTY': False, | |
| 2574 }, | 1790 }, |
| 2575 ), | 1791 ), |
| 2576 ], | 1792 ], |
| 2577 properties: Properties(**{}), | 1793 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2578 }, | 1794 }, |
| 2579 'name': u'release', | 1795 'name': u'release', |
| 2580 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1796 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2581 'slavenames': [ | 1797 'slavenames': [ |
| 2582 'build275-m2', | 1798 'build275-m2', |
| 2583 'build272-m2', | 1799 'build272-m2', |
| 2584 'cros-testing3-c2', | 1800 'cros-testing3-c2', |
| 2585 'build270-m2', | 1801 'build270-m2', |
| 2586 'build274-m2', | 1802 'build274-m2', |
| 2587 'cros-testing10-c2', | 1803 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 2604 'cros-testing1-c2', | 1820 'cros-testing1-c2', |
| 2605 'cros-testing9-c2', | 1821 'cros-testing9-c2', |
| 2606 ], | 1822 ], |
| 2607 }, | 1823 }, |
| 2608 { | 1824 { |
| 2609 'builddir': u'release-afdo-generate', | 1825 'builddir': u'release-afdo-generate', |
| 2610 'category': '3general full|info', | 1826 'category': '3general full|info', |
| 2611 'factory': BuildFactory { | 1827 'factory': BuildFactory { |
| 2612 steps: [ | 1828 steps: [ |
| 2613 ( | 1829 ( |
| 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>, | 1830 <class master.chromium_step.AnnotatedCommand>, |
| 2642 { | 1831 { |
| 1832 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2643 'command': [ | 1833 'command': [ |
| 2644 'chromite/bin/cbuildbot', | 1834 'python', |
| 2645 <buildbot.process.properties.WithProperties instance>, | 1835 '-u', |
| 2646 <master.master_utils.ConditionalProperty instance>, | 1836 '../../../scripts/slave/annotated_run.py', |
| 2647 <master.master_utils.ConditionalProperty instance>, | 1837 <master.factory.commands.WithJsonProperties instance>, |
| 2648 <buildbot.process.properties.Property instance>, | 1838 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2649 <master.master_utils.ConditionalProperty instance>, | |
| 2650 <buildbot.process.properties.WithProperties instance>, | |
| 2651 ], | 1839 ], |
| 2652 'description': 'cbuildbot', | 1840 'description': 'running steps via annotated script', |
| 1841 'haltOnFailure': True, |
| 2653 'maxTime': 57600, | 1842 'maxTime': 57600, |
| 2654 'name': 'cbuildbot', | 1843 'name': 'steps', |
| 2655 'timeout': 9000, | 1844 'timeout': 9000, |
| 2656 'usePTY': False, | |
| 2657 }, | 1845 }, |
| 2658 ), | 1846 ), |
| 2659 ], | 1847 ], |
| 2660 properties: Properties(**{}), | 1848 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2661 }, | 1849 }, |
| 2662 'name': u'release-afdo-generate', | 1850 'name': u'release-afdo-generate', |
| 2663 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1851 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2664 'slavenames': [ | 1852 'slavenames': [ |
| 2665 'build275-m2', | 1853 'build275-m2', |
| 2666 'build272-m2', | 1854 'build272-m2', |
| 2667 'cros-testing3-c2', | 1855 'cros-testing3-c2', |
| 2668 'build270-m2', | 1856 'build270-m2', |
| 2669 'build274-m2', | 1857 'build274-m2', |
| 2670 'cros-testing10-c2', | 1858 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 2687 'cros-testing1-c2', | 1875 'cros-testing1-c2', |
| 2688 'cros-testing9-c2', | 1876 'cros-testing9-c2', |
| 2689 ], | 1877 ], |
| 2690 }, | 1878 }, |
| 2691 { | 1879 { |
| 2692 'builddir': u'release-afdo-use', | 1880 'builddir': u'release-afdo-use', |
| 2693 'category': '3general full|info', | 1881 'category': '3general full|info', |
| 2694 'factory': BuildFactory { | 1882 'factory': BuildFactory { |
| 2695 steps: [ | 1883 steps: [ |
| 2696 ( | 1884 ( |
| 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>, | 1885 <class master.chromium_step.AnnotatedCommand>, |
| 2725 { | 1886 { |
| 1887 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2726 'command': [ | 1888 'command': [ |
| 2727 'chromite/bin/cbuildbot', | 1889 'python', |
| 2728 <buildbot.process.properties.WithProperties instance>, | 1890 '-u', |
| 2729 <master.master_utils.ConditionalProperty instance>, | 1891 '../../../scripts/slave/annotated_run.py', |
| 2730 <master.master_utils.ConditionalProperty instance>, | 1892 <master.factory.commands.WithJsonProperties instance>, |
| 2731 <buildbot.process.properties.Property instance>, | 1893 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2732 <master.master_utils.ConditionalProperty instance>, | |
| 2733 <buildbot.process.properties.WithProperties instance>, | |
| 2734 ], | 1894 ], |
| 2735 'description': 'cbuildbot', | 1895 'description': 'running steps via annotated script', |
| 1896 'haltOnFailure': True, |
| 2736 'maxTime': 57600, | 1897 'maxTime': 57600, |
| 2737 'name': 'cbuildbot', | 1898 'name': 'steps', |
| 2738 'timeout': 9000, | 1899 'timeout': 9000, |
| 2739 'usePTY': False, | |
| 2740 }, | 1900 }, |
| 2741 ), | 1901 ), |
| 2742 ], | 1902 ], |
| 2743 properties: Properties(**{}), | 1903 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2744 }, | 1904 }, |
| 2745 'name': u'release-afdo-use', | 1905 'name': u'release-afdo-use', |
| 2746 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1906 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2747 'slavenames': [ | 1907 'slavenames': [ |
| 2748 'build275-m2', | 1908 'build275-m2', |
| 2749 'build272-m2', | 1909 'build272-m2', |
| 2750 'cros-testing3-c2', | 1910 'cros-testing3-c2', |
| 2751 'build270-m2', | 1911 'build270-m2', |
| 2752 'build274-m2', | 1912 'build274-m2', |
| 2753 'cros-testing10-c2', | 1913 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 2770 'cros-testing1-c2', | 1930 'cros-testing1-c2', |
| 2771 'cros-testing9-c2', | 1931 'cros-testing9-c2', |
| 2772 ], | 1932 ], |
| 2773 }, | 1933 }, |
| 2774 { | 1934 { |
| 2775 'builddir': u'sync-test-cbuildbot', | 1935 'builddir': u'sync-test-cbuildbot', |
| 2776 'category': '3general full|info', | 1936 'category': '3general full|info', |
| 2777 'factory': BuildFactory { | 1937 'factory': BuildFactory { |
| 2778 steps: [ | 1938 steps: [ |
| 2779 ( | 1939 ( |
| 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>, | 1940 <class master.chromium_step.AnnotatedCommand>, |
| 2808 { | 1941 { |
| 1942 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2809 'command': [ | 1943 'command': [ |
| 2810 'chromite/bin/cbuildbot', | 1944 'python', |
| 2811 <buildbot.process.properties.WithProperties instance>, | 1945 '-u', |
| 2812 <master.master_utils.ConditionalProperty instance>, | 1946 '../../../scripts/slave/annotated_run.py', |
| 2813 <master.master_utils.ConditionalProperty instance>, | 1947 <master.factory.commands.WithJsonProperties instance>, |
| 2814 <buildbot.process.properties.Property instance>, | 1948 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2815 <master.master_utils.ConditionalProperty instance>, | |
| 2816 <buildbot.process.properties.WithProperties instance>, | |
| 2817 ], | 1949 ], |
| 2818 'description': 'cbuildbot', | 1950 'description': 'running steps via annotated script', |
| 1951 'haltOnFailure': True, |
| 2819 'maxTime': 57600, | 1952 'maxTime': 57600, |
| 2820 'name': 'cbuildbot', | 1953 'name': 'steps', |
| 2821 'timeout': 9000, | 1954 'timeout': 9000, |
| 2822 'usePTY': False, | |
| 2823 }, | 1955 }, |
| 2824 ), | 1956 ), |
| 2825 ], | 1957 ], |
| 2826 properties: Properties(**{}), | 1958 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2827 }, | 1959 }, |
| 2828 'name': u'sync-test-cbuildbot', | 1960 'name': u'sync-test-cbuildbot', |
| 2829 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 1961 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2830 'slavenames': [ | 1962 'slavenames': [ |
| 2831 'build275-m2', | 1963 'build275-m2', |
| 2832 'build272-m2', | 1964 'build272-m2', |
| 2833 'cros-testing3-c2', | 1965 'cros-testing3-c2', |
| 2834 'build270-m2', | 1966 'build270-m2', |
| 2835 'build274-m2', | 1967 'build274-m2', |
| 2836 'cros-testing10-c2', | 1968 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 2853 'cros-testing1-c2', | 1985 'cros-testing1-c2', |
| 2854 'cros-testing9-c2', | 1986 'cros-testing9-c2', |
| 2855 ], | 1987 ], |
| 2856 }, | 1988 }, |
| 2857 { | 1989 { |
| 2858 'builddir': u'telemetry', | 1990 'builddir': u'telemetry', |
| 2859 'category': '3general full|info', | 1991 'category': '3general full|info', |
| 2860 'factory': BuildFactory { | 1992 'factory': BuildFactory { |
| 2861 steps: [ | 1993 steps: [ |
| 2862 ( | 1994 ( |
| 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>, | 1995 <class master.chromium_step.AnnotatedCommand>, |
| 2891 { | 1996 { |
| 1997 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2892 'command': [ | 1998 'command': [ |
| 2893 'chromite/bin/cbuildbot', | 1999 'python', |
| 2894 <buildbot.process.properties.WithProperties instance>, | 2000 '-u', |
| 2895 <master.master_utils.ConditionalProperty instance>, | 2001 '../../../scripts/slave/annotated_run.py', |
| 2896 <master.master_utils.ConditionalProperty instance>, | 2002 <master.factory.commands.WithJsonProperties instance>, |
| 2897 <buildbot.process.properties.Property instance>, | 2003 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2898 <master.master_utils.ConditionalProperty instance>, | |
| 2899 <buildbot.process.properties.WithProperties instance>, | |
| 2900 ], | 2004 ], |
| 2901 'description': 'cbuildbot', | 2005 'description': 'running steps via annotated script', |
| 2006 'haltOnFailure': True, |
| 2902 'maxTime': 57600, | 2007 'maxTime': 57600, |
| 2903 'name': 'cbuildbot', | 2008 'name': 'steps', |
| 2904 'timeout': 9000, | 2009 'timeout': 9000, |
| 2905 'usePTY': False, | |
| 2906 }, | 2010 }, |
| 2907 ), | 2011 ), |
| 2908 ], | 2012 ], |
| 2909 properties: Properties(**{}), | 2013 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2910 }, | 2014 }, |
| 2911 'name': u'telemetry', | 2015 'name': u'telemetry', |
| 2912 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 2016 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2913 'slavenames': [ | 2017 'slavenames': [ |
| 2914 'build275-m2', | 2018 'build275-m2', |
| 2915 'build272-m2', | 2019 'build272-m2', |
| 2916 'cros-testing3-c2', | 2020 'cros-testing3-c2', |
| 2917 'build270-m2', | 2021 'build270-m2', |
| 2918 'build274-m2', | 2022 'build274-m2', |
| 2919 'cros-testing10-c2', | 2023 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 2936 'cros-testing1-c2', | 2040 'cros-testing1-c2', |
| 2937 'cros-testing9-c2', | 2041 'cros-testing9-c2', |
| 2938 ], | 2042 ], |
| 2939 }, | 2043 }, |
| 2940 { | 2044 { |
| 2941 'builddir': u'test-ap', | 2045 'builddir': u'test-ap', |
| 2942 'category': '3general full|info', | 2046 'category': '3general full|info', |
| 2943 'factory': BuildFactory { | 2047 'factory': BuildFactory { |
| 2944 steps: [ | 2048 steps: [ |
| 2945 ( | 2049 ( |
| 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>, | 2050 <class master.chromium_step.AnnotatedCommand>, |
| 2974 { | 2051 { |
| 2052 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 2975 'command': [ | 2053 'command': [ |
| 2976 'chromite/bin/cbuildbot', | 2054 'python', |
| 2977 <buildbot.process.properties.WithProperties instance>, | 2055 '-u', |
| 2978 <master.master_utils.ConditionalProperty instance>, | 2056 '../../../scripts/slave/annotated_run.py', |
| 2979 <master.master_utils.ConditionalProperty instance>, | 2057 <master.factory.commands.WithJsonProperties instance>, |
| 2980 <buildbot.process.properties.Property instance>, | 2058 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 2981 <master.master_utils.ConditionalProperty instance>, | |
| 2982 <buildbot.process.properties.WithProperties instance>, | |
| 2983 ], | 2059 ], |
| 2984 'description': 'cbuildbot', | 2060 'description': 'running steps via annotated script', |
| 2061 'haltOnFailure': True, |
| 2985 'maxTime': 57600, | 2062 'maxTime': 57600, |
| 2986 'name': 'cbuildbot', | 2063 'name': 'steps', |
| 2987 'timeout': 9000, | 2064 'timeout': 9000, |
| 2988 'usePTY': False, | |
| 2989 }, | 2065 }, |
| 2990 ), | 2066 ), |
| 2991 ], | 2067 ], |
| 2992 properties: Properties(**{}), | 2068 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 2993 }, | 2069 }, |
| 2994 'name': u'test-ap', | 2070 'name': u'test-ap', |
| 2995 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 2071 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 2996 'slavenames': [ | 2072 'slavenames': [ |
| 2997 'build275-m2', | 2073 'build275-m2', |
| 2998 'build272-m2', | 2074 'build272-m2', |
| 2999 'cros-testing3-c2', | 2075 'cros-testing3-c2', |
| 3000 'build270-m2', | 2076 'build270-m2', |
| 3001 'build274-m2', | 2077 'build274-m2', |
| 3002 'cros-testing10-c2', | 2078 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 3019 'cros-testing1-c2', | 2095 'cros-testing1-c2', |
| 3020 'cros-testing9-c2', | 2096 'cros-testing9-c2', |
| 3021 ], | 2097 ], |
| 3022 }, | 2098 }, |
| 3023 { | 2099 { |
| 3024 'builddir': u'toolchain-major', | 2100 'builddir': u'toolchain-major', |
| 3025 'category': '3general full|info', | 2101 'category': '3general full|info', |
| 3026 'factory': BuildFactory { | 2102 'factory': BuildFactory { |
| 3027 steps: [ | 2103 steps: [ |
| 3028 ( | 2104 ( |
| 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>, | 2105 <class master.chromium_step.AnnotatedCommand>, |
| 3057 { | 2106 { |
| 2107 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 3058 'command': [ | 2108 'command': [ |
| 3059 'chromite/bin/cbuildbot', | 2109 'python', |
| 3060 <buildbot.process.properties.WithProperties instance>, | 2110 '-u', |
| 3061 <master.master_utils.ConditionalProperty instance>, | 2111 '../../../scripts/slave/annotated_run.py', |
| 3062 <master.master_utils.ConditionalProperty instance>, | 2112 <master.factory.commands.WithJsonProperties instance>, |
| 3063 <buildbot.process.properties.Property instance>, | 2113 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 3064 <master.master_utils.ConditionalProperty instance>, | |
| 3065 <buildbot.process.properties.WithProperties instance>, | |
| 3066 ], | 2114 ], |
| 3067 'description': 'cbuildbot', | 2115 'description': 'running steps via annotated script', |
| 2116 'haltOnFailure': True, |
| 3068 'maxTime': 57600, | 2117 'maxTime': 57600, |
| 3069 'name': 'cbuildbot', | 2118 'name': 'steps', |
| 3070 'timeout': 9000, | 2119 'timeout': 9000, |
| 3071 'usePTY': False, | |
| 3072 }, | 2120 }, |
| 3073 ), | 2121 ), |
| 3074 ], | 2122 ], |
| 3075 properties: Properties(**{}), | 2123 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 3076 }, | 2124 }, |
| 3077 'name': u'toolchain-major', | 2125 'name': u'toolchain-major', |
| 3078 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 2126 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 3079 'slavenames': [ | 2127 'slavenames': [ |
| 3080 'build275-m2', | 2128 'build275-m2', |
| 3081 'build272-m2', | 2129 'build272-m2', |
| 3082 'cros-testing3-c2', | 2130 'cros-testing3-c2', |
| 3083 'build270-m2', | 2131 'build270-m2', |
| 3084 'build274-m2', | 2132 'build274-m2', |
| 3085 'cros-testing10-c2', | 2133 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 3102 'cros-testing1-c2', | 2150 'cros-testing1-c2', |
| 3103 'cros-testing9-c2', | 2151 'cros-testing9-c2', |
| 3104 ], | 2152 ], |
| 3105 }, | 2153 }, |
| 3106 { | 2154 { |
| 3107 'builddir': u'toolchain-minor', | 2155 'builddir': u'toolchain-minor', |
| 3108 'category': '3general full|info', | 2156 'category': '3general full|info', |
| 3109 'factory': BuildFactory { | 2157 'factory': BuildFactory { |
| 3110 steps: [ | 2158 steps: [ |
| 3111 ( | 2159 ( |
| 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>, | 2160 <class master.chromium_step.AnnotatedCommand>, |
| 3140 { | 2161 { |
| 2162 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 3141 'command': [ | 2163 'command': [ |
| 3142 'chromite/bin/cbuildbot', | 2164 'python', |
| 3143 <buildbot.process.properties.WithProperties instance>, | 2165 '-u', |
| 3144 <master.master_utils.ConditionalProperty instance>, | 2166 '../../../scripts/slave/annotated_run.py', |
| 3145 <master.master_utils.ConditionalProperty instance>, | 2167 <master.factory.commands.WithJsonProperties instance>, |
| 3146 <buildbot.process.properties.Property instance>, | 2168 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 3147 <master.master_utils.ConditionalProperty instance>, | |
| 3148 <buildbot.process.properties.WithProperties instance>, | |
| 3149 ], | 2169 ], |
| 3150 'description': 'cbuildbot', | 2170 'description': 'running steps via annotated script', |
| 2171 'haltOnFailure': True, |
| 3151 'maxTime': 57600, | 2172 'maxTime': 57600, |
| 3152 'name': 'cbuildbot', | 2173 'name': 'steps', |
| 3153 'timeout': 9000, | 2174 'timeout': 9000, |
| 3154 'usePTY': False, | |
| 3155 }, | 2175 }, |
| 3156 ), | 2176 ), |
| 3157 ], | 2177 ], |
| 3158 properties: Properties(**{}), | 2178 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 3159 }, | 2179 }, |
| 3160 'name': u'toolchain-minor', | 2180 'name': u'toolchain-minor', |
| 3161 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 2181 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 3162 'slavenames': [ | 2182 'slavenames': [ |
| 3163 'build275-m2', | 2183 'build275-m2', |
| 3164 'build272-m2', | 2184 'build272-m2', |
| 3165 'cros-testing3-c2', | 2185 'cros-testing3-c2', |
| 3166 'build270-m2', | 2186 'build270-m2', |
| 3167 'build274-m2', | 2187 'build274-m2', |
| 3168 'cros-testing10-c2', | 2188 'cros-testing10-c2', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 3185 'cros-testing1-c2', | 2205 'cros-testing1-c2', |
| 3186 'cros-testing9-c2', | 2206 'cros-testing9-c2', |
| 3187 ], | 2207 ], |
| 3188 }, | 2208 }, |
| 3189 { | 2209 { |
| 3190 'builddir': u'tot-asan-informational', | 2210 'builddir': u'tot-asan-informational', |
| 3191 'category': '3general full|info', | 2211 'category': '3general full|info', |
| 3192 'factory': BuildFactory { | 2212 'factory': BuildFactory { |
| 3193 steps: [ | 2213 steps: [ |
| 3194 ( | 2214 ( |
| 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>, | 2215 <class master.chromium_step.AnnotatedCommand>, |
| 3223 { | 2216 { |
| 2217 'active_master': <class 'master_site_config.ChromiumOSTryServer'>, |
| 3224 'command': [ | 2218 'command': [ |
| 3225 'chromite/bin/cbuildbot', | 2219 'python', |
| 3226 <buildbot.process.properties.WithProperties instance>, | 2220 '-u', |
| 3227 <master.master_utils.ConditionalProperty instance>, | 2221 '../../../scripts/slave/annotated_run.py', |
| 3228 <master.master_utils.ConditionalProperty instance>, | 2222 <master.factory.commands.WithJsonProperties instance>, |
| 3229 <buildbot.process.properties.Property instance>, | 2223 '--factory-properties-gz=eNqrVipKTc4sSFWyUkouyi/WT04qzcxJScoviS8
pqszKT1KqBQDYvgzK', |
| 3230 <master.master_utils.ConditionalProperty instance>, | |
| 3231 <buildbot.process.properties.WithProperties instance>, | |
| 3232 ], | 2224 ], |
| 3233 'description': 'cbuildbot', | 2225 'description': 'running steps via annotated script', |
| 2226 'haltOnFailure': True, |
| 3234 'maxTime': 57600, | 2227 'maxTime': 57600, |
| 3235 'name': 'cbuildbot', | 2228 'name': 'steps', |
| 3236 'timeout': 9000, | 2229 'timeout': 9000, |
| 3237 'usePTY': False, | |
| 3238 }, | 2230 }, |
| 3239 ), | 2231 ), |
| 3240 ], | 2232 ], |
| 3241 properties: Properties(**{}), | 2233 properties: Properties(**{'recipe': 'cros/cbuildbot_tryjob'}), |
| 3242 }, | 2234 }, |
| 3243 'name': u'tot-asan-informational', | 2235 'name': u'tot-asan-informational', |
| 3244 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, | 2236 'nextSlaveAndBuild': <chromiumos_tryserver_util.NextSlaveAndBuild object>, |
| 3245 'slavenames': [ | 2237 'slavenames': [ |
| 3246 'build275-m2', | 2238 'build275-m2', |
| 3247 'build272-m2', | 2239 'build272-m2', |
| 3248 'cros-testing3-c2', | 2240 'cros-testing3-c2', |
| 3249 'build270-m2', | 2241 'build270-m2', |
| 3250 'build274-m2', | 2242 'build274-m2', |
| 3251 'cros-testing10-c2', | 2243 'cros-testing10-c2', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 3271 }, | 2263 }, |
| 3272 ], | 2264 ], |
| 3273 'caches': { | 2265 'caches': { |
| 3274 'BuildRequests': 1000, | 2266 'BuildRequests': 1000, |
| 3275 'Changes': 1000, | 2267 'Changes': 1000, |
| 3276 'SourceStamps': 1000, | 2268 'SourceStamps': 1000, |
| 3277 'chdicts': 1000, | 2269 'chdicts': 1000, |
| 3278 'ssdicts': 1000, | 2270 'ssdicts': 1000, |
| 3279 }, | 2271 }, |
| 3280 'change_source': [ | 2272 'change_source': [ |
| 3281 <buildbot.changes.gitpoller.GitPoller instance>, | 2273 <master.gitiles_poller.GitilesPoller instance>, |
| 3282 <buildbot.changes.gitpoller.GitPoller instance>, | 2274 <master.gitiles_poller.GitilesPoller instance>, |
| 3283 ], | 2275 ], |
| 3284 'eventHorizon': 200, | 2276 'eventHorizon': 200, |
| 3285 'logHorizon': 3000, | 2277 'logHorizon': 3000, |
| 3286 'mergeRequests': <function <lambda>>, | 2278 'mergeRequests': <function <lambda>>, |
| 3287 'projectName': 'ChromiumOS Try Server', | 2279 'projectName': 'ChromiumOS Try Server', |
| 3288 'projectURL': 'http://www.chromium.org', | 2280 'projectURL': 'http://www.chromium.org', |
| 3289 'properties': { | 2281 'properties': { |
| 3290 'buildbotURL': 'https://uberchromegw.corp.google.com/i/chromiumos.tryserver/
', | 2282 'buildbotURL': 'https://uberchromegw.corp.google.com/i/chromiumos.tryserver/
', |
| 3291 'mastername': 'chromiumos.tryserver', | 2283 'mastername': 'chromiumos.tryserver', |
| 3292 }, | 2284 }, |
| (...skipping 1748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5041 namedServices: {}, | 4033 namedServices: {}, |
| 5042 from_addr: 'cros.tryserver@chromium.org', | 4034 from_addr: 'cros.tryserver@chromium.org', |
| 5043 smtp_host: 'smtp', | 4035 smtp_host: 'smtp', |
| 5044 reply_to: 'chromeos-build@google.com', | 4036 reply_to: 'chromeos-build@google.com', |
| 5045 etc_builder: 'etc', | 4037 etc_builder: 'etc', |
| 5046 schedulerid: None, | 4038 schedulerid: None, |
| 5047 master: None, | 4039 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', | 4040 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: [], | 4041 services: [], |
| 5050 pollers: [ | 4042 pollers: [ |
| 5051 <buildbot.changes.gitpoller.GitPoller instance>, | 4043 <master.gitiles_poller.GitilesPoller instance>, |
| 5052 <buildbot.changes.gitpoller.GitPoller instance>, | 4044 <master.gitiles_poller.GitilesPoller instance>, |
| 5053 ], | 4045 ], |
| 5054 builderNames: [], | 4046 builderNames: [], |
| 5055 properties: Properties(**{'scheduler': 'cros_try_job_git'}), | 4047 properties: Properties(**{'scheduler': 'cros_try_job_git'}), |
| 5056 }, | 4048 }, |
| 5057 ], | 4049 ], |
| 5058 'slavePortnum': 8149, | 4050 'slavePortnum': 8149, |
| 5059 'slaves': [ | 4051 'slaves': [ |
| 5060 <AutoRebootBuildSlave 'build275-m2', (no builders yet)>, | 4052 <AutoRebootBuildSlave 'build275-m2', (no builders yet)>, |
| 5061 <AutoRebootBuildSlave 'build272-m2', (no builders yet)>, | 4053 <AutoRebootBuildSlave 'build272-m2', (no builders yet)>, |
| 5062 <AutoRebootBuildSlave 'cros16-c2', (no builders yet)>, | 4054 <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)>, | 4157 <AutoRebootBuildSlave 'build244-m2', (no builders yet)>, |
| 5166 ], | 4158 ], |
| 5167 'status': [ | 4159 'status': [ |
| 5168 <WebStatus on port tcp:8049>, | 4160 <WebStatus on port tcp:8049>, |
| 5169 <WebStatus on port tcp:8249>, | 4161 <WebStatus on port tcp:8249>, |
| 5170 <master.status_logger.StatusEventLogger instance>, | 4162 <master.status_logger.StatusEventLogger instance>, |
| 5171 <buildbot.status.mail.MailNotifier instance>, | 4163 <buildbot.status.mail.MailNotifier instance>, |
| 5172 <master.try_mail_notifier.TryMailNotifier instance>, | 4164 <master.try_mail_notifier.TryMailNotifier instance>, |
| 5173 ], | 4165 ], |
| 5174 } | 4166 } |
| OLD | NEW |