Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Side by Side Diff: tools/gardening/lib/src/buildbot_data.dart

Issue 2858623002: Remove MIPS support (Closed)
Patch Set: Rebase Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698