首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >travis上的Cocoapod CI不能安装依赖项

travis上的Cocoapod CI不能安装依赖项
EN

Stack Overflow用户
提问于 2019-09-23 20:43:38
回答 1查看 1K关注 0票数 0

这是我根据cocoapods指南:pod lib create创建的茧足类:https://guides.cocoapods.org/making/using-pod-lib-create.html。为我生成了目录结构、文件和示例项目。

我的.travis.yml看起来是这样的:

代码语言:javascript
复制
# references:
# * https://www.objc.io/issues/6-build-tools/travis-ci/
# * https://github.com/supermarin/xcpretty#usage

osx_image: xcode10.3
language: objective-c
# cache: cocoapods
xcode_workspace: Example/MUXSDKImaListener.xcworkspace
xcode_scheme: MUXSDKImaListener-Example
podfile: Example/Podfile
xcode_sdk: iphonesimulator9.3
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- pod repo update
- pod install --project-directory=Example
script:
- set -o pipefail && xctool test -enableCodeCoverage YES -workspace Example/MUXSDKImaListener.xcworkspace -scheme MUXSDKImaListener-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint

当travis试图构建这些测试时,它在安装Cocoapods时会遇到错误。这个输出有点混乱,因为它似乎说它需要1.0.1,但是它仍然不能找到那个版本。

该版本存在:https://cocoapods.org/pods/Mux-Stats-AVPlayer

代码语言:javascript
复制
$ bundle --version
Bundler version 2.0.2
announce
$ xcodebuild -version -sdk
$ pod --version
1.7.5
before_install.1
2.77s$ gem install cocoapods
2.76s$ pod install --repo-update --project-directory=Example
Updating local specs repositories
Adding spec repo `trunk` with CDN `https://cdn.cocoapods.org/`
Analyzing dependencies
[!] CocoaPods could not find compatible versions for pod "Mux-Stats-AVPlayer":
  In snapshot (Podfile.lock):
    Mux-Stats-AVPlayer (= 1.0.1, ~> 1.0.1)
  In Podfile:
    Mux-Stats-Google-IMA (from `../`) was resolved to 0.3.0, which depends on
      Mux-Stats-AVPlayer (~> 1.0.1)
None of your spec sources contain a spec satisfying the dependencies: `Mux-Stats-AVPlayer (= 1.0.1, ~> 1.0.1), Mux-Stats-AVPlayer (~> 1.0.1)`.
You have either:
 * mistyped the name or version.
 * not added the source repo that hosts the Podspec to your Podfile.
[!] Automatically assigning platform `iOS` with version `9.3` on target `MUXSDKImaListener_Tests` because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform`.
The command "pod install --repo-update --project-directory=Example" failed and exited with 31 during .
Your build has been stopped.

完整的建筑在这里:

https://travis-ci.org/muxinc/mux-stats-google-ima/builds/588638291

在这个.travis.yml配置文件中,我似乎遗漏了一些显而易见的东西。

示例项目的Podfile

代码语言:javascript
复制
use_frameworks!
target 'MUXSDKImaListener_Tests' do
  pod 'Mux-Stats-Google-IMA', :path => '../'

  pod 'Specta'
    pod 'Expecta'
end

例如,Podfile.lock项目

代码语言:javascript
复制
PODS:
  - Expecta (1.0.6)
  - GoogleAds-IMA-iOS-SDK (3.10.1)
  - Mux-Stats-AVPlayer (1.0.1):
    - Mux-Stats-Core (~> 2.0.0)
  - Mux-Stats-Core (2.0.12)
  - Mux-Stats-Google-IMA (0.3.0):
    - GoogleAds-IMA-iOS-SDK (~> 3.9)
    - Mux-Stats-AVPlayer (~> 1.0.1)
  - Specta (1.0.7)

DEPENDENCIES:
  - Expecta
  - Mux-Stats-Google-IMA (from `../`)
  - Specta

SPEC REPOS:
  https://github.com/cocoapods/specs.git:
    - Expecta
    - GoogleAds-IMA-iOS-SDK
    - Mux-Stats-AVPlayer
    - Mux-Stats-Core
    - Specta

EXTERNAL SOURCES:
  Mux-Stats-Google-IMA:
    :path: "../"

SPEC CHECKSUMS:
  Expecta: 3b6bd90a64b9a1dcb0b70aa0e10a7f8f631667d5
  GoogleAds-IMA-iOS-SDK: 0e37ab83b22075ad631a70dcba9528cb246c92bf
  Mux-Stats-AVPlayer: e8ab70f9e67ac54958ac6ee87f479e3c0486baf5
  Mux-Stats-Core: 73e692799571459722526ff4a721b6872da5c776
  Mux-Stats-Google-IMA: 6ef4042dc3a1052ed55edfcc35a55b8106d2a4a3
  Specta: 3e1bd89c3517421982dc4d1c992503e48bd5fe66

PODFILE CHECKSUM: 95e48c48a4efb20f1822c750f01f9c105d46475a

COCOAPODS: 1.7.5

Mux-Stats-Google-IMA.podspec文件:

代码语言:javascript
复制
#
# Be sure to run `pod lib lint MUXSDKImaListener.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#

Pod::Spec.new do |s|
  s.name             = 'Mux-Stats-Google-IMA'
  s.version          = '0.3.0'
  s.summary          = 'Mux-Stats-Google-IMA is for tracking performance analytics and QoS monitoring for video with mux.com.'

  s.description      = <<-DESC
    The Mux Stats Google IMA is designed to be used with Mux-Stats-AVPlayer and GoogleAds-IMA-iOS-SDK to track performance analytics and QoS monitoring for video.
                       DESC

  s.homepage         = 'https://mux.com'
  s.social_media_url = 'https://twitter.com/muxhq'
  s.license          = { :type => 'Apache 2.0', :file => 'LICENSE' }
  s.author           = { 'Mux' => 'ios-sdk@mux.com' }
  s.source           = { :git => 'https://github.com/muxinc/mux-sdk-ima-listener.git', :tag => "v#{s.version}" }

  s.ios.deployment_target = '9.0'

  s.source_files = 'MUXSDKImaListener/Classes/**/*'

  s.dependency 'Mux-Stats-AVPlayer', '~> 1.0.1'
  s.dependency 'GoogleAds-IMA-iOS-SDK', '~> 3.9'
end
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2019-09-23 21:38:11

我不知道为什么我的例子中的吊舱安装失败,但返回到自动生成的.travis.yml修复了它。我唯一需要修改的就是在before_install:下添加一个指令

没有这行的pod setup -- pod lib lint失败了,但有一个特定的错误:

错误\ iOS未知:在验证过程中遇到未知错误(无法找到Mux-Stats-Google-IMA依赖的Mux-Stats-AVPlayer (~> 1.0.0)规范)。

没有这行的gem update concurrent-ruby -- pod lib lint失败时有一个不同的错误:

错误\ iOS未知:在验证过程中遇到一个未知错误(未初始化的常量并发::iOS)。

所以,这就是我的.travis.yml现在的样子,它运行测试并运行pod lib lint

代码语言:javascript
复制
# references:
# * https://www.objc.io/issues/6-build-tools/travis-ci/
# * https://github.com/supermarin/xcpretty#usage

osx_image: xcode7.3
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
# Avoid error: Encountered an unknown error (uninitialized constant Concurrent::Promises) during validation
# https://github.com/CocoaPods/CocoaPods/issues/8948
- gem update concurrent-ruby
- pod setup
# - pod install --project-directory=Example
script:
- set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/MUXSDKImaListener.xcworkspace -scheme MUXSDKImaListener-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/58069952

复制
相关文章

相似问题

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