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 'buildbot_structures.dart'; | 5 import 'buildbot_structures.dart'; |
6 | 6 |
7 /// Data describing the steps of the buildbots. | 7 /// Data describing the steps of the buildbots. |
8 const List<BuildGroup> buildGroups = const <BuildGroup>[ | 8 const List<BuildGroup> buildGroups = const <BuildGroup>[ |
9 const BuildGroup( | 9 const BuildGroup( |
10 groupName: 'vm', | 10 groupName: 'vm', |
(...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
713 const BuildSubgroup(shardNames: const <String>[ | 713 const BuildSubgroup(shardNames: const <String>[ |
714 'pub-linux-be', | 714 'pub-linux-be', |
715 ], testSteps: const <String>[ | 715 ], testSteps: const <String>[ |
716 'annotated_steps', | 716 'annotated_steps', |
717 ]), | 717 ]), |
718 const BuildSubgroup(shardNames: const <String>[ | 718 const BuildSubgroup(shardNames: const <String>[ |
719 'pkg-mac10.11-release-be', | 719 'pkg-mac10.11-release-be', |
720 ], testSteps: const <String>[ | 720 ], testSteps: const <String>[ |
721 'package unit tests', | 721 'package unit tests', |
722 'third_party/pkg_tested unit tests', | 722 'third_party/pkg_tested unit tests', |
723 'pub get dependencies', | |
724 ]), | 723 ]), |
725 const BuildSubgroup(shardNames: const <String>[ | 724 const BuildSubgroup(shardNames: const <String>[ |
726 'pkg-linux-release-be', | 725 'pkg-linux-release-be', |
727 ], testSteps: const <String>[ | 726 ], testSteps: const <String>[ |
728 'package unit tests', | 727 'package unit tests', |
729 'third_party/pkg_tested unit tests', | 728 'third_party/pkg_tested unit tests', |
730 'pub get dependencies', | |
731 ]), | 729 ]), |
732 const BuildSubgroup(shardNames: const <String>[ | 730 const BuildSubgroup(shardNames: const <String>[ |
733 'pkg-win7-release-be', | 731 'pkg-win7-release-be', |
734 ], testSteps: const <String>[ | 732 ], testSteps: const <String>[ |
735 'package unit tests', | 733 'package unit tests', |
736 'third_party/pkg_tested unit tests', | 734 'third_party/pkg_tested unit tests', |
737 'pub get dependencies', | |
738 ]), | 735 ]), |
739 ], | 736 ], |
740 ), | 737 ), |
741 const BuildGroup( | 738 const BuildGroup( |
742 groupName: 'dartium-full', | 739 groupName: 'dartium-full', |
743 subgroups: const <BuildSubgroup>[ | 740 subgroups: const <BuildSubgroup>[ |
744 const BuildSubgroup(shardNames: const <String>[ | 741 const BuildSubgroup(shardNames: const <String>[ |
745 'dartium-linux-x64-be', | 742 'dartium-linux-x64-be', |
746 ], testSteps: const <String>[ | 743 ], testSteps: const <String>[ |
747 'annotated steps', | 744 'annotated steps', |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
856 } | 853 } |
857 | 854 |
858 List<BuildUri> createShardUris(String shardName, int buildNumber) { | 855 List<BuildUri> createShardUris(String shardName, int buildNumber) { |
859 List<BuildUri> uriList = <BuildUri>[]; | 856 List<BuildUri> uriList = <BuildUri>[]; |
860 for (String testStep in testSteps) { | 857 for (String testStep in testSteps) { |
861 uriList.add(new BuildUri.fromData(shardName, buildNumber, testStep)); | 858 uriList.add(new BuildUri.fromData(shardName, buildNumber, testStep)); |
862 } | 859 } |
863 return uriList; | 860 return uriList; |
864 } | 861 } |
865 } | 862 } |
OLD | NEW |