Reputation: 2831
I'm searching for an build workflow to build an eclipse rcp application by feature builds with maven 3 with tycho and hudson.
My Example:
3 Features
2 Products
For every feature and product exists one Hudson job. My requested workflow is that
Is there any best practive workflow for that (with an tutorial in the best case)?
Upvotes: 0
Views: 164
Reputation: 11723
You should be able to get this to work by using the same local Maven repositories in all jobs. When you call e.g. the feature A build with mvn clean install
, the build result will be visible to all Tycho build that run on the same local repository.
Note that you should probably put a Hudson lock on the shared local Maven repository, because Maven and Tycho don't access that repository in a multi process safe way.
Upvotes: 1