Kalle Richter
Kalle Richter

Reputation: 8778

How to get travis to clone git SSH URLs?

Specifying a git SSH URL as a submodule causes travis-c to fail at cloning. See a log of a failing Orienteer build as example. Is there any way to get travis-ci to clone such repositories?

Upvotes: 3

Views: 4034

Answers (1)

Dralagen
Dralagen

Reputation: 51

It's not a problem on travis-ci but you try to clone a private repo without the read right.

See http://docs.travis-ci.com/user/private-dependencies/ to use an ssh key to clone your private repo.

Update : You can see help from github to cloning a ssh repo : https://help.github.com/articles/which-remote-url-should-i-use/#cloning-with-ssh

Upvotes: 1

Related Questions