[conductor] update console link (#118338)

* update console link

* update test to include new console link
This commit is contained in:
Kevin Chisholm 2023-02-01 14:05:45 -06:00 committed by GitHub
parent 1305a509d4
commit 484d881f27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -45,6 +45,9 @@ String luciConsoleLink(String channel, String groupName) {
);
final String consoleName =
channel == 'master' ? groupName : '${channel}_$groupName';
if (groupName == 'packaging') {
return 'https://luci-milo.appspot.com/p/dart-internal/g/flutter_packaging/console';
}
return 'https://ci.chromium.org/p/flutter/g/$consoleName/console';
}

View File

@ -990,7 +990,8 @@ void main() {
);
expect(
stdio.stdout,
contains('Release archive packages must be verified on cloud storage: https://ci.chromium.org/p/flutter/g/beta_packaging/console'),
contains(
'Release archive packages must be verified on cloud storage: https://luci-milo.appspot.com/p/dart-internal/g/flutter_packaging/console'),
);
expect(finalState.currentPhase, ReleasePhase.VERIFY_RELEASE);
});