I am quite new to buildbot and struggling to create a configuration for the following python code structure:
A library containing some general classes and functions and two programs who depend on the one library. All three have their own git repository. Lets call the library the_lib
and the programs prog_a
and prog_b
.
What I would like buildbot
to do for me is periodically check the repositories for changes and if so rebuild what is necessary. So a change to the source of the_lib
should rebuild all three, a change to the source of prog_a
should only rebuild prog_a
and a change to the source of prog_b
should only rebuild prog_b
.
I am at the point where I am able to build any of the three when its source changes but how do I introduce de dependency of prog_a
and prog_b
on the_lib
?
Cheers, Feoh