| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:async'; | 5 import 'dart:async'; |
| 6 import 'buildbot_structures.dart'; | 6 import 'buildbot_structures.dart'; |
| 7 import 'logdog.dart' as logdog; | 7 import 'logdog.dart' as logdog; |
| 8 import 'util.dart'; | 8 import 'util.dart'; |
| 9 | 9 |
| 10 /// Data describing the steps of the buildbots. | 10 /// Data describing the steps of the buildbots. |
| (...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 'dart2js-ff-package-fast-startup tests', | 545 'dart2js-ff-package-fast-startup tests', |
| 546 'dart2js-ff-co19-fast-startup tests', | 546 'dart2js-ff-co19-fast-startup tests', |
| 547 'dart2js-ff-extra-fast-startup tests', | 547 'dart2js-ff-extra-fast-startup tests', |
| 548 ]), | 548 ]), |
| 549 ], | 549 ], |
| 550 ), | 550 ), |
| 551 const BuildGroup( | 551 const BuildGroup( |
| 552 groupName: 'chrome', | 552 groupName: 'chrome', |
| 553 subgroups: const <BuildSubgroup>[ | 553 subgroups: const <BuildSubgroup>[ |
| 554 const BuildSubgroup(shardNames: const <String>[ | 554 const BuildSubgroup(shardNames: const <String>[ |
| 555 'dart2js-linux-drt-1-2-be', | |
| 556 'dart2js-linux-drt-2-2-be', | |
| 557 'dart2js-linux-drt-csp-minified-be' | 555 'dart2js-linux-drt-csp-minified-be' |
| 558 ], testSteps: const <String>[ | 556 ], testSteps: const <String>[ |
| 559 'dart2js-drt tests', | 557 'dart2js-drt tests', |
| 560 'dart2js-drt-observatory_ui tests', | 558 'dart2js-drt-observatory_ui tests', |
| 559 'dart2js-drt-package tests', |
| 560 'dart2js-drt-co19 tests', |
| 561 'dart2js-drt-extra tests', |
| 562 'dart2js-drt-fast-startup tests', |
| 563 'dart2js-drt-observatory_ui-fast-startup tests', |
| 564 'dart2js-drt-package-fast-startup tests', |
| 565 'dart2js-drt-co19-fast-startup tests', |
| 566 'dart2js-drt-extra-fast-startup tests', |
| 567 'dart2js-drt-fast-startup-checked tests', |
| 568 'dart2js-drt-observatory_ui-fast-startup-checked tests', |
| 569 'dart2js-drt-package-fast-startup-checked tests', |
| 570 'dart2js-drt-co19-fast-startup-checked tests', |
| 571 'dart2js-drt-extra-fast-startup-checked tests', |
| 572 ], isActive: false), |
| 573 const BuildSubgroup(shardNames: const <String>[ |
| 574 'dart2js-linux-drt-1-2-be', |
| 575 'dart2js-linux-drt-2-2-be', |
| 576 ], testSteps: const <String>[ |
| 577 'dart2js-drt tests', |
| 578 'dart2js-drt-observatory_ui tests', |
| 561 'dart2js-drt-package tests', | 579 'dart2js-drt-package tests', |
| 562 'dart2js-drt-co19 tests', | 580 'dart2js-drt-co19 tests', |
| 563 'dart2js-drt-extra tests', | 581 'dart2js-drt-extra tests', |
| 564 'dart2js-drt-fast-startup tests', | 582 'dart2js-drt-fast-startup tests', |
| 565 'dart2js-drt-observatory_ui-fast-startup tests', | 583 'dart2js-drt-observatory_ui-fast-startup tests', |
| 566 'dart2js-drt-package-fast-startup tests', | 584 'dart2js-drt-package-fast-startup tests', |
| 567 'dart2js-drt-co19-fast-startup tests', | 585 'dart2js-drt-co19-fast-startup tests', |
| 568 'dart2js-drt-extra-fast-startup tests', | 586 'dart2js-drt-extra-fast-startup tests', |
| 569 'dart2js-drt-fast-startup-checked tests', | 587 'dart2js-drt-fast-startup-checked tests', |
| 570 'dart2js-drt-observatory_ui-fast-startup-checked tests', | 588 'dart2js-drt-observatory_ui-fast-startup-checked tests', |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 952 stepNames.add(step); | 970 stepNames.add(step); |
| 953 } | 971 } |
| 954 } | 972 } |
| 955 if (stepNames.isNotEmpty) { | 973 if (stepNames.isNotEmpty) { |
| 956 subgroups[subgroup] = stepNames; | 974 subgroups[subgroup] = stepNames; |
| 957 } | 975 } |
| 958 } | 976 } |
| 959 } | 977 } |
| 960 return subgroups; | 978 return subgroups; |
| 961 } | 979 } |
| OLD | NEW |