首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >在Azure Devops管道中的linphone-sdk上安装pod失败

在Azure Devops管道中的linphone-sdk上安装pod失败
EN

Stack Overflow用户
提问于 2021-09-15 17:00:01
回答 1查看 335关注 0票数 1

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:

代码语言:javascript
复制
    # 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上失败。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2021-10-05 14:42:41

pod install解决问题之前使用pod setup

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/69197167

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档