Unverified Commit 413f88f2 authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

Do not try to codesign during plugin_test_ios (#88834)

parent 72289ec8
......@@ -148,7 +148,12 @@ class _FlutterProject {
Future<void> build(String target) async {
await inDirectory(Directory(rootPath), () async {
final String buildOutput = await evalFlutter('build', options: <String>[target, '-v']);
final String buildOutput = await evalFlutter('build', options: <String>[
target,
'-v',
if (target == 'ios')
'--no-codesign',
]);
if (target == 'ios' || target == 'macos') {
// This warning is confusing and shouldn't be emitted. Plugins often support lower versions than the
......
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