Skip to content

Commit 484d881

Browse files
authored
[conductor] update console link (#118338)
* update console link * update test to include new console link
1 parent 1305a50 commit 484d881

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

dev/conductor/core/lib/src/state.dart

+3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ String luciConsoleLink(String channel, String groupName) {
4545
);
4646
final String consoleName =
4747
channel == 'master' ? groupName : '${channel}_$groupName';
48+
if (groupName == 'packaging') {
49+
return 'https://luci-milo.appspot.com/p/dart-internal/g/flutter_packaging/console';
50+
}
4851
return 'https://ci.chromium.org/p/flutter/g/$consoleName/console';
4952
}
5053

dev/conductor/core/test/next_test.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -990,7 +990,8 @@ void main() {
990990
);
991991
expect(
992992
stdio.stdout,
993-
contains('Release archive packages must be verified on cloud storage: https://ci.chromium.org/p/flutter/g/beta_packaging/console'),
993+
contains(
994+
'Release archive packages must be verified on cloud storage: https://luci-milo.appspot.com/p/dart-internal/g/flutter_packaging/console'),
994995
);
995996
expect(finalState.currentPhase, ReleasePhase.VERIFY_RELEASE);
996997
});

0 commit comments

Comments
 (0)