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

Side by Side Diff: tools/gardening/bin/summary.dart

Issue 2973653002: Updated various gardening data, and ignoring gardening/temp. (Closed)
Patch Set: Now finishing quickly in summary.dart if only doing "help" Created 3 years, 5 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 'package:args/args.dart'; 5 import 'package:args/args.dart';
6 import 'package:gardening/src/bot.dart'; 6 import 'package:gardening/src/bot.dart';
7 import 'package:gardening/src/util.dart'; 7 import 'package:gardening/src/util.dart';
8 8
9 void help(ArgParser argParser) { 9 void help(ArgParser argParser) {
10 print('Summarizes the current status of the build bot.'); 10 print('Summarizes the current status of the build bot.');
11 print('Usage: summary [options]'); 11 print('Usage: summary [options]');
12 print(' where options are:'); 12 print(' where options are:');
13 print(argParser.usage); 13 print(argParser.usage);
14 } 14 }
15 15
16 main(List<String> args) async { 16 main(List<String> args) async {
17 ArgParser argParser = createArgParser(); 17 ArgParser argParser = createArgParser();
18 ArgResults argResults = argParser.parse(args); 18 ArgResults argResults = argParser.parse(args);
19 processArgResults(argResults); 19 processArgResults(argResults);
20 if (argResults.rest.length == 0 || argResults['help']) {
21 help(argParser);
22 if (argResults['help']) return;
23 exit(1);
24 }
25
20 var bot = new Bot(logdog: argResults['logdog']); 26 var bot = new Bot(logdog: argResults['logdog']);
21 var recentUris = bot.mostRecentUris; 27 var recentUris = bot.mostRecentUris;
22 var results = await bot.readResults(recentUris); 28 var results = await bot.readResults(recentUris);
23 results.forEach((result) { 29 results.forEach((result) {
24 if (result.hasFailures) { 30 if (result.hasFailures) {
25 print("${result.buildUri} has failures."); 31 print("${result.buildUri} has failures.");
26 } 32 }
27 }); 33 });
28 bot.close(); 34 bot.close();
29 } 35 }
OLDNEW
« no previous file with comments | « tools/gardening/bin/create_shard_groups.dart ('k') | tools/gardening/lib/src/buildbot_data.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698