srushti / goldberg

Goldberg is a lightweight CI server written in Ruby which worries about Bundler & RVM so that you don't have to.
Other
243 stars 29 forks source link

git submodule support #78

Closed lucasefe closed 13 years ago

lucasefe commented 13 years ago

Hi, is there any way to tell goldberg to do a git submodule init and git submodule update before running the build process?

Cheers Lucas

achamian commented 13 years ago

Currently Goldberg doesn't support git submodules out of the box, as not many projects have submodules. But you can easily achieve it by writing a custom rake command.

srushti commented 13 years ago

I think goldberg can do this quite easily. All we'll need to do is to look for a .gitmodules file and accordingly run init and update.

srushti commented 13 years ago

@suryagaddipati submitted a trivial fix for this with #82.