I am working on project A, and A depends on the rapidly developing project B (its main branch).
Therefore, B is a submodule of A, every time I build A, B also rebuilds. In addition, every time B has a new commit, I need to build B and then rebuild A. (Fortunately, the projects are small enough, so compile time is not important).
Now, here is the point. I want to start a new build in Travis CI or other continuous integration services when there is a new commit in projects A or B.
I just tried Github and Travis CI. Reconciliation in project B does not initiate assembly in project A. Is there an easy way to trigger such continuous integration?
source share