| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 'vm tests', | 87 'vm tests', |
| 88 'checked vm tests', | 88 'checked vm tests', |
| 89 ]), | 89 ]), |
| 90 const BuildSubgroup(shardNames: const <String>[ | 90 const BuildSubgroup(shardNames: const <String>[ |
| 91 'vm-win-release-ia32-be', | 91 'vm-win-release-ia32-be', |
| 92 ], testSteps: const <String>[ | 92 ], testSteps: const <String>[ |
| 93 'vm tests', | 93 'vm tests', |
| 94 'checked vm tests', | 94 'checked vm tests', |
| 95 ]), | 95 ]), |
| 96 const BuildSubgroup(shardNames: const <String>[ | 96 const BuildSubgroup(shardNames: const <String>[ |
| 97 'vm-linux-debug-simmips-be', | |
| 98 ], testSteps: const <String>[ | |
| 99 'vm tests', | |
| 100 'checked vm tests', | |
| 101 ]), | |
| 102 const BuildSubgroup(shardNames: const <String>[ | |
| 103 'vm-linux-release-simmips-be', | |
| 104 ], testSteps: const <String>[ | |
| 105 'vm tests', | |
| 106 'checked vm tests', | |
| 107 ]), | |
| 108 const BuildSubgroup(shardNames: const <String>[ | |
| 109 'vm-linux-debug-simarm-be', | 97 'vm-linux-debug-simarm-be', |
| 110 ], testSteps: const <String>[ | 98 ], testSteps: const <String>[ |
| 111 'vm tests', | 99 'vm tests', |
| 112 'checked vm tests', | 100 'checked vm tests', |
| 113 ]), | 101 ]), |
| 114 const BuildSubgroup(shardNames: const <String>[ | 102 const BuildSubgroup(shardNames: const <String>[ |
| 115 'vm-linux-release-simarm-be', | 103 'vm-linux-release-simarm-be', |
| 116 ], testSteps: const <String>[ | 104 ], testSteps: const <String>[ |
| 117 'vm tests', | 105 'vm tests', |
| 118 'checked vm tests', | 106 'checked vm tests', |
| (...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 853 } | 841 } |
| 854 | 842 |
| 855 List<BuildUri> createShardUris(String shardName, int buildNumber) { | 843 List<BuildUri> createShardUris(String shardName, int buildNumber) { |
| 856 List<BuildUri> uriList = <BuildUri>[]; | 844 List<BuildUri> uriList = <BuildUri>[]; |
| 857 for (String testStep in testSteps) { | 845 for (String testStep in testSteps) { |
| 858 uriList.add(new BuildUri.fromData(shardName, buildNumber, testStep)); | 846 uriList.add(new BuildUri.fromData(shardName, buildNumber, testStep)); |
| 859 } | 847 } |
| 860 return uriList; | 848 return uriList; |
| 861 } | 849 } |
| 862 } | 850 } |
| OLD | NEW |