I want to run several gradle tasks seperatly on the same gradle project.
With different scheduling for example: one task to create a baseline, and one task for periodic analysis of the baseline.
I saw these posts:
Does jenkins matrix configuration can help me with that?
I see it's mainly to run on a different JDK and different OS,
or I can actually define config1 with gradle_task1 that will be run
and then only when I choose to run of config2 with gradle_task2 on the same project?

