Relative Content

Tag Archive for jenkinsgroovy

Create two jenkins pipelines with one script

I have the following problem – I have one jenkins pipeline script which is created by a seed job.
From that pipeline script I would like to create two pipelines – one created from master-branch and the other one with a parameter branch.

How do I get my dynamic parallel branches working in jenkins?

I’m trying to use jenkins (v2.452.2) to trigger automated functional tests against our selenium grid using a command line tool I’ve written. I’ve been able to get it working for single tests but I’m now trying to set it up so that I can provide it with an array of test set IDs (of variable length) and have it dynamically run parallel branches of a stage in my pipeline that each use my command line tool and pass in arguments (including the test set id) to fire off the tests against the grid.