Hi,
Please help me to provide the steps or answers for the below two questions:
1.How to implement gradle incremental builds(Delta builds) in jenkins?
2. We have multiple modules, how to build a single or particular module using pipeline script in jenkins?
Thanks in Advance
Hi,
1.How to implement gradle incremental builds(Delta builds) in jenkins?
I think the best way to do so is to use a remote build cache for your builds on CI.
We have multiple modules, how to build a single or particular module using pipeline script in jenkins?
You call the build task in the subproject which you want to run. So if you want to run the test
task in project15
, only run the test:project15
task to only run the tests of project15.
Cheers,
Stefan