Unverified Commit 484d881f authored by Kevin Chisholm's avatar Kevin Chisholm Committed by GitHub

[conductor] update console link (#118338)

* update console link

* update test to include new console link
parent 1305a509
......@@ -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';
}
......
......@@ -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);
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment