2016-12-09 23 views
0

私はiOS向けCordova Appのビルドを自動化するスクリプトを作成しています。 私はCLI 6.4.0とcordova-ios 4.3.1を使用していますが、私はポッドとしてプラグインにフレームワークを追加する新しい可能性を使用しています。プラグインは、config.xmlで次のように指定されています。Cordova iOS Pluginインストールポッドインストールがサイレントに終了

<plugin name="sbb-cordova-plugin-onboarding" spec="~0.0.4" /> 

とプラグインは、ポッドとしてのフレームワークを使用しています。

<framework src="SBBSMPLib" type="podspec" 
    spec=":git => 'https://code.sbb.ch/scm/kd_cp/sbbsmplib-ios.git', :branch => 'develop'"/> 

私のスクリプトは、私のMacBook上でうまく動作します。そこで私は次のように出力

... 

Running `pod install` (to install plugins) 
Running command: pod install --verbose 
==== pod install start ==== 

    Preparing 

.... 

は、今私は、私たちジェンキンスインフラストラクチャのマックサーバー上でスクリプトを実行しようとしてもらいます。プラグインのインストールに失敗し、次のログが表示されます。

Discovered plugin "sbb-cordova-plugin-onboarding" in config.xml. Adding it to the project 
No scripts found for hook "before_plugin_add". 
Calling plugman.fetch on plugin "[email protected]~0.0.4" 
Fetching plugin "[email protected]~0.0.4" via npm 
Copying plugin "/Users/admin/.cordova/lib/npm_cache/sbb-cordova-plugin-onboarding/0.0.4/package" => "/Users/admin/jenkins-slave/workspace/kd.esta.mobile.hybrid.onboarding-testapp.ios.developer/apps/onboarding-testapp/plugins/sbb-cordova-plugin-onboarding" 
Calling plugman.install on plugin "/Users/admin/jenkins-slave/workspace/kd.esta.mobile.hybrid.onboarding-testapp.ios.developer/apps/onboarding-testapp/plugins/sbb-cordova-plugin-onboarding" for platform "ios 
Installing "sbb-cordova-plugin-onboarding" for ios 
Running command: /Users/admin/jenkins-slave/workspace/kd.esta.mobile.hybrid.onboarding-testapp.ios.developer/apps/onboarding-testapp/platforms/ios/cordova/version 
Command finished with error code 0: /Users/admin/jenkins-slave/workspace/kd.esta.mobile.hybrid.onboarding-testapp.ios.developer/apps/onboarding-testapp/platforms/ios/cordova/version 
Finding scripts for "before_plugin_install" hook from plugin sbb-cordova-plugin-onboarding on ios platform only. 
No scripts found for hook "before_plugin_install". 
Install start for "sbb-cordova-plugin-onboarding" on ios. 
Beginning processing of action stack for ios project... 
Action stack processing complete. 
Adding pods since the plugin contained <framework>(s) with type="podspec" 
pods.json: The file at /Users/admin/jenkins-slave/workspace/kd.esta.mobile.hybrid.onboarding-testapp.ios.developer/apps/onboarding-testapp/platforms/ios/pods.json does not exist. 
Creating new pods.json in platforms/ios 
Wrote to pods.json. 
Podfile: The file at /Users/admin/jenkins-slave/workspace/kd.esta.mobile.hybrid.onboarding-testapp.ios.developer/apps/onboarding-testapp/platforms/ios/Podfile does not exist. 
Creating new Podfile in platforms/ios 
Wrote to Podfile. 
Set pods.json for `SBBSMPLib` 
Added pod line for `SBBSMPLib` 
Wrote to pods.json. 
Wrote to Podfile. 
Running `pod install` (to install plugins) 
Failed to install 'sbb-cordova-plugin-onboarding':undefined 
Failed to restore plugin "sbb-cordova-plugin-onboarding" from config.xml. You might need to try adding it again. Error: Version should contain only numbers and dots 
Saving [email protected] into platforms.json 
No scripts found for hook "after_platform_add". 

つまり、 'pod install'は何もしません。

だから、問題はJenkins Mac Serverの設定に関係していると思います。どんな考えが間違っているのか、もっと詳細なエラーをどのように得ることができますか?

感謝

+0

コルドバの問題は、この問題のために開かれたこの問題のために開かれた:https://issues.apache.org/jira/browse/CB-12272 –

答えて

関連する問題