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

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

Issue 2801143003: Remove the "pkgbuild" step on the bots. (Closed)
Patch Set: Rebase. Created 3 years, 7 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
« no previous file with comments | « tools/bots/pkg.py ('k') | tools/status_clean.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 702 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « tools/bots/pkg.py ('k') | tools/status_clean.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698