Can I use "jenkins job builder" and create pipeline job, which I could run only specific stages in? Something like this:
pipeline:
    if (condition):
       stage1:
           //... 
    if (condition):
       stage2:
           //...
or
pipeline:
    stage1:
       if (condition):
           //... 
    stage2:
       if (condition):
           //...
 
                        
You could use something like this, I hope this helps