Unverified Commit 60c6cbf0 authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

Remove Apple Silicon workarounds from plugin lint test (#111432)

parent 06b87fba
...@@ -31,13 +31,9 @@ Future<void> main() async { ...@@ -31,13 +31,9 @@ Future<void> main() async {
'lib', 'lib',
'lint', 'lint',
iosintegrationTestPodspec, iosintegrationTestPodspec,
'--configuration=Debug', // Release targets unsupported arm64 simulators. Use Debug to only build against targeted x86_64 simulator devices.
'--use-libraries', '--use-libraries',
'--verbose', '--verbose',
], ],
environment: <String, String>{
'LANG': 'en_US.UTF-8',
},
); );
final String macosintegrationTestPodspec = path.join(integrationTestPackage, 'integration_test_macos', 'macos', 'integration_test_macos.podspec'); final String macosintegrationTestPodspec = path.join(integrationTestPackage, 'integration_test_macos', 'macos', 'integration_test_macos.podspec');
...@@ -47,12 +43,8 @@ Future<void> main() async { ...@@ -47,12 +43,8 @@ Future<void> main() async {
'lib', 'lib',
'lint', 'lint',
macosintegrationTestPodspec, macosintegrationTestPodspec,
'--configuration=Debug', // Release targets unsupported arm64 Apple Silicon. Use Debug to only build against targeted x86_64 macOS.
'--verbose', '--verbose',
], ],
environment: <String, String>{
'LANG': 'en_US.UTF-8',
},
); );
}); });
...@@ -84,13 +76,9 @@ Future<void> main() async { ...@@ -84,13 +76,9 @@ Future<void> main() async {
'lib', 'lib',
'lint', 'lint',
objcPodspecPath, objcPodspecPath,
'--configuration=Debug', // Release targets unsupported arm64 simulators. Use Debug to only build against targeted x86_64 simulator devices.
'--allow-warnings', '--allow-warnings',
'--verbose', '--verbose',
], ],
environment: <String, String>{
'LANG': 'en_US.UTF-8',
},
); );
}); });
...@@ -103,14 +91,10 @@ Future<void> main() async { ...@@ -103,14 +91,10 @@ Future<void> main() async {
'lib', 'lib',
'lint', 'lint',
objcPodspecPath, objcPodspecPath,
'--configuration=Debug', // Release targets unsupported arm64 simulators. Use Debug to only build against targeted x86_64 simulator devices.
'--allow-warnings', '--allow-warnings',
'--use-libraries', '--use-libraries',
'--verbose', '--verbose',
], ],
environment: <String, String>{
'LANG': 'en_US.UTF-8',
},
); );
}); });
...@@ -141,14 +125,10 @@ Future<void> main() async { ...@@ -141,14 +125,10 @@ Future<void> main() async {
<String>[ <String>[
'lib', 'lib',
'lint', 'lint',
'--configuration=Debug', // Release targets unsupported arm64 simulators. Use Debug to only build against targeted x86_64 simulator devices.
swiftPodspecPath, swiftPodspecPath,
'--allow-warnings', '--allow-warnings',
'--verbose', '--verbose',
], ],
environment: <String, String>{
'LANG': 'en_US.UTF-8',
},
); );
}); });
...@@ -161,14 +141,10 @@ Future<void> main() async { ...@@ -161,14 +141,10 @@ Future<void> main() async {
'lib', 'lib',
'lint', 'lint',
swiftPodspecPath, swiftPodspecPath,
'--configuration=Debug', // Release targets unsupported arm64 simulators. Use Debug to only build against targeted x86_64 simulator devices.
'--allow-warnings', '--allow-warnings',
'--use-libraries', '--use-libraries',
'--verbose', '--verbose',
], ],
environment: <String, String>{
'LANG': 'en_US.UTF-8',
},
); );
}); });
...@@ -185,11 +161,6 @@ Future<void> main() async { ...@@ -185,11 +161,6 @@ Future<void> main() async {
'--allow-warnings', '--allow-warnings',
'--verbose', '--verbose',
], ],
environment: <String, String>{
'LANG': 'en_US.UTF-8',
},
// TODO(jmagman): Flutter cannot build against ARM https://github.com/flutter/flutter/issues/69221
canFail: true,
); );
}); });
...@@ -206,11 +177,6 @@ Future<void> main() async { ...@@ -206,11 +177,6 @@ Future<void> main() async {
'--use-libraries', '--use-libraries',
'--verbose', '--verbose',
], ],
environment: <String, String>{
'LANG': 'en_US.UTF-8',
},
// TODO(jmagman): Flutter cannot build against ARM https://github.com/flutter/flutter/issues/69221
canFail: true,
); );
}); });
......
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