Ios Travis ci卡在pods安装中

Ios Travis ci卡在pods安装中,ios,cocoapods,travis-ci,Ios,Cocoapods,Travis Ci,我正在尝试使用以下配置在我的GitHub repo上配置Travis CI 特拉维斯·伊梅尔先生 播客文件: 问题 生成服务器在cocoapods安装中卡住,并在一段时间后返回超时错误: Cloning spec repo 'cocoapods' from 'https://github.com/CocoaPods/Specs.git' No output has been received in the last 10m0s, this potentially indicates ....

我正在尝试使用以下配置在我的GitHub repo上配置Travis CI

特拉维斯·伊梅尔先生 播客文件: 问题 生成服务器在cocoapods安装中卡住,并在一段时间后返回超时错误:

Cloning spec repo 'cocoapods' from 'https://github.com/CocoaPods/Specs.git'


No output has been received in the last 10m0s, this potentially indicates ....

使用源代码https://cdn.cocoapods.org/“而不是
”https://github.com/CocoaPods/Specs.git“

有了最新版本的CocoaPods,它应该更快、更可靠

platform :ios, '9.0'
use_frameworks!

source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/somia/ninchat-podspecs.git'

def all_pods
    pod 'AFNetworking', '~> 3.0'
    pod 'NinchatLowLevelClient', '~> 0'
    pod 'GoogleWebRTC', '~> 1.1'
    #pod 'NinchatLowLevelClient', :path => '.'
end

target 'NinchatSDK' do
  all_pods
end

target 'NinchatSDKTests' do
  all_pods
end
Cloning spec repo 'cocoapods' from 'https://github.com/CocoaPods/Specs.git'


No output has been received in the last 10m0s, this potentially indicates ....