Questions tagged [build-pipeline-plugin]

A Jenkins plugin for setting up Continuous Delivery pipelines

This plugin provides a Build Pipeline View of upstream and downstream connected jobs that typically form a build pipeline. In addition, it offers the ability to define manual triggers for jobs that require intervention prior to execution, e.g. an approval process outside of Jenkins.

Source: Build Pipeline Plugin

27 questions
1
vote
0 answers

Jenkins Pipeline Plugin with Parallel jobs UI

I have an issue with my jenkins build pipeline whereby at each for in the pipeline, I see duplicate flows, which are never used. The pipeline runs correctly, and it's only a UI issue, but it'd kind of annoying and limits the number of builds I can…
smur89
  • 329
  • 1
  • 3
  • 15
1
vote
1 answer

Create a Build Pipeline View based on Pipeline job using Job DSL plugin in Jenkins

Since there's a limitation in Jenkins Pipeline's that you cannot add a manual build step without hanging the build (see for example this stackoverflow question) I'm experimenting with a combination of Jenkins Pipeline and Build Pipeline Plugin using…
Johan
  • 37,479
  • 32
  • 149
  • 237
1
vote
0 answers

JobFanIn Plugin is not working as expected

I configured Job FanIn Plugin to create a pipeline when certain jobs where completed (diagram 1): ----- ----| C |---- ------- ------- | ----- | ---- | A | --> | B |…
Robert
  • 10,403
  • 14
  • 67
  • 117
1
vote
0 answers

Jenkins build pipeline providing env vars for different environments

I have a public git repository that has a Jenkinsfile. The Jenkinsfile needs to be able to build three environments: dev, staging and production. There's a set of variables that need to be set for each environment - some of these are sensitive and I…
user307927
  • 748
  • 9
  • 22
1
vote
0 answers

Remove unnecessary jobs from build pipeline on Jenkins

I'm a bit new to Jenkins and I'm having an display issue with Build Pipeline plugin. I'm executing some jobs in parallel using JobFanIn Plugin, i.e. the next job in the pipeline will only be executed when all the previous jobs are concluded.…
1
vote
1 answer

Dynamically load a groovy class and invoke a method in pipeline script

I have developed groovy classes in IntelliJ IDE, I want to instantiate one of these classes in 'Pipeline script' of Pipeline plugin in Jenkins. I tried to follow the examples of 'Eval.me' and class.forName Sample package com.mycomp.tmo /** *…
DevOps Junky
  • 287
  • 1
  • 5
  • 22
1
vote
1 answer

Jenkins Build Pipeline plugin with empty ${PIPELINE_VERSION}

I'm using Build Pipeline plugin in Jenkins. I've set a job and configured it to create the delivery pipeline version. The result will be something like: 3.0.0_r119723_b5 I can see the jobs are displayed with the correct build titles (the pipeline…
June
  • 592
  • 8
  • 18
1
vote
1 answer

how to get SVN revision using getRevision() in hudson

I am customizing the buildpipeline plugin to publish the SVN revision number for each job of each build number at pipeline. I found one hudson package ` hudson.scm.SubversionChangeLogSet.LogEntry, which has the method getRevision() to get the…
user1517716
  • 107
  • 2
  • 11
0
votes
1 answer

How to extract pipeline dsl in the pipeline plugin with the Java?

I am developing a Jenkins pipeline plugin for CNB(buildpacks). I need to get the variables ​​in the pipeline script with Java but I still can't succeed. This is the my pipeline script. buildpacks { builder = "some/builder" } And I can access…
0
votes
2 answers

Jenkins Build / Pipeline job - Job's listing in tree / layout ordered listing

Is it possible that for a given Build Pipeline job (which has downstream jobs either in the build or post build action as "Trigger build on other projects"), I can get a Tree listing view showing which Pipeline job# N called, what child jobs in the…
AKS
  • 16,482
  • 43
  • 166
  • 258
0
votes
2 answers

Aggregation of jenkins pipelines

The Jenkins pipeline plugin is awesome. But is it also possible to aggregate pipelines of (dependent projects) e.g. micro-services?
Georg Heiler
  • 16,916
  • 36
  • 162
  • 292
0
votes
1 answer

How to show SVN revision in Jenkins Build Pipeline Plugin instead of job number?

I am using the Jenkins Build Pipeline plugin. Do you know how to show the SVN revision in Jenkins Build Pipeline Plugin instead of job number? I have seen in screenshot of old versions of this plugin that it showed SVN revision sometimes. Is it a…
1
2