Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 3e43a3d

Browse files
committed
[infra] Remove unsatisfactory link to results feed from status output
The link placed in the results step from the recipe is better, filtering on configurations rather than configuration groups. So this link is replaced by the better link, which is also placed more prominently. Change-Id: I82f7bf808bc99087e5a1c4e20c3822376f93eec2 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/142151 Reviewed-by: Karl Klose <[email protected]>
1 parent 7baa21d commit 3e43a3d

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

tools/bots/get_builder_status.dart

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ void printResults() async {
120120
if (builder.endsWith('-try')) return;
121121
configurations = await getConfigurations();
122122
await printActiveFailures();
123-
await printResultsFeedLink();
124123
}
125124

126125
Future<List<String>> getConfigurations() async {
@@ -198,20 +197,6 @@ Future<void> printActiveFailures() async {
198197
}
199198
}
200199

201-
void printResultsFeedLink() async {
202-
if (builder.endsWith('-try')) return;
203-
final groups = {
204-
for (final configuration in configurations) configuration.split('-').first
205-
};
206-
String fragment = [
207-
'showLatestFailures=true',
208-
'showUnapprovedOnly=true',
209-
if (groups.isNotEmpty) 'configurationGroups=${groups.join(',')}'
210-
].join('&');
211-
final link = 'https://dart-ci.firebaseapp.com/#$fragment';
212-
print('\nFailures link: $link');
213-
}
214-
215200
Future<http.Response> runFirestoreQuery(String query) {
216201
final headers = {
217202
'Authorization': 'Bearer $token',

0 commit comments

Comments
 (0)