Run pod repo update in iOS extension test (#73442)

This commit is contained in:
Jenn Magder 2021-01-07 11:59:40 -08:00 committed by GitHub
parent 9fc48454bd
commit b78b17630a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -30,6 +30,10 @@ Future<void> main() async {
projectDir,
);
// For some reason devicelab machines have really old spec snapshots.
// TODO(jmagman): Remove this if this test is moved to a machine that installs CocoaPods on every run.
await eval('pod', <String>['repo', 'update', '--verbose']);
section('Create release build');
await inDirectory(projectDir, () async {

View File

@ -39,7 +39,7 @@ target 'watch Extension' do
use_frameworks!
use_modular_headers!
pod 'EFQRCode/watchOS', '5.1.6'
pod 'EFQRCode', '6.0'
end
post_install do |installer|