Questions tagged [jenkins-build-flow]

Build Flow plugin for the Jenkins continuous integration server.

The Build Flow plugin for the Jenkins continuous integration server software enables defining upper level Flow item to manage job orchestration and link up rules, using a dedicated domain-specific language (DSL). This DSL makes the flow definition very concise and readable.

Links:

66 questions
0
votes
2 answers

Accessing a downstream parameter using build flow

Assume I have the following downstream job: // DOWNSTREAM JOB DYNAMIC_VAR = "" parallel( { DYNAMIC_VAR = new Date() // Some other value determined // at runtime by this job }, { // Some other…
clangers
  • 566
  • 1
  • 6
  • 13
0
votes
3 answers

Running same job in Parallel using Jenkins and build flow

I am trying to run the same automated job (Deriv_Client_Add) in parallel with different parameters: parallel( {build("GUI/Deriv_Client_Add", Branch:params.Branch, Config:params.Conf)} ) If I run this job multiple times with a different branch and…
Swatcat
  • 73
  • 6
  • 21
  • 57
0
votes
3 answers

Add a map into jenkins build flow plugin as a parameters

I have a question about jenkins build flow plugin. There is a default value called params in build flow dsl which looks like a map. What I want to do is pass this map to the jobs I want to build later, however, build flow dont accept a map as a…
Tim
  • 2,006
  • 2
  • 18
  • 25
0
votes
0 answers

How do I get jenkins to build at a precise time?

I am using jenkins along with the build flow plug-in. I would like my project built at precise times, but jenkins seems to only run on a schedule that is relative to the time the schedule is applied. I want the project to build at precisely…
Rick
  • 426
  • 3
  • 8
0
votes
1 answer

How to get Jenkins Build Flow Groovy script's filename from within itself?

I'm writing a Jenkins Build Flow Plugin script and would like to access the filename from within the script itself (so that if the file is renamed, the script content won't have to change). How can this be done?
Noel Yap
  • 18,822
  • 21
  • 92
  • 144
-1
votes
1 answer

How to apply approval on Jenkins Pipeline through email

I have created an Build Pipeline in Jenkins as below. Configuration Detail of Build Pipeline as follows. 1: I have successfully configure the Email on Jenkins at pic 5 and it is working fine. I can receive email when build pass or fail. How…
Malik
  • 23
  • 6
1 2 3 4
5