在6b0a31e4提交(https://gitlab.linphone.org/BC/public/podspec)之后,我的流水线失败了。我正在试着运行一个简单的pod install。
日志显示:[!] Couldn't determine repo type for URL: https://gitlab.linphone.org/BC/public/podspec.git`:():映射值不允许在此上下文中的第3行第1列`
我的Podfile:
# DO NOT MODIFY -- auto-generated by Apache Cordova
source 'https://cdn.cocoapods.org/'
source 'https://gitlab.linphone.org/BC/public/podspec.git'
platform :ios, '11.0'
use_frameworks!
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
end
end
target '${{ parameters.app }}' do
project '${{ parameters.app }}.xcodeproj'
pod 'SVProgressHUD'
pod 'linphone-sdk', '4.3'
pod 'MobileVLCKit', '3.3.15'
pod 'Firebase/Core', '6.33.0'
pod 'Firebase/Auth', '6.33.0'
pod 'Firebase/Messaging', '6.33.0'
pod 'Firebase/Performance', '6.33.0'
pod 'Firebase/RemoteConfig', '6.33.0'
pod 'Firebase/InAppMessaging', '6.33.0'
pod 'FirebaseFirestore', :tag => '6.33.0', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git'
pod 'Firebase/Crashlytics', '6.33.0'
pod 'GoogleSignIn', '5.0.2'
pod 'GoogleTagManager', '7.1.4'
end它在Macbook上工作,只有在Azure Pipeline上失败。
发布于 2021-10-05 14:42:41
在pod install解决问题之前使用pod setup。
https://stackoverflow.com/questions/69197167
复制相似问题