私は、wercker.com で bower-rails gem を持つ Rails アプリのテストに取り組んでいます。
wercker.yml には次の設定があります。
- script:
name: rake bower:install
code: bundle exec rake bower:install
また、アプリの bower.json には、プライベート git リポジトリを持ついくつかの依存関係があります。
そのため、テスト中に wercker がプライベート リポジトリにアクセスできなかったため、エラーが発生しました。以下のようなエラーでした。
bower foo#* ECMDERR Failed to execute "git ls-remote --tags --heads git@bitbucket.org:myrepository/foo.git", exit code of #128 Warning: Permanently added the RSA host key for IP address 'xxx.xxx.xxx.xxx' to the list of known hosts. Permission denied (publickey). fatal: The remote end hung up unexpectedly
Additional error details:
Warning: Permanently added the RSA host key for IP address 'xxx.xxx.xxx.xxx' to the list of known hosts.
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
rake aborted!
解決策はありますか?