Questions tagged [jenkins-plugins]

Jenkins is an open source continuous integration software. It is extensible by Plugins which are developed by the core team, users, and developers. There are currently 1300+ plugins available for Jenkins.

The complete list of plugins is available here.

What questions should have this tag?

Any questions about Jenkins plugins, plugin development, and plugin use may be tagged with jenkins-plugins.

To learn more about Jenkins plugins:

Visit "Extend Jenkins" and "Customize Jenkins"

7181 questions
21
votes
3 answers

Jenkins + Github Pull Request builder display name

For our project we use GitHub. We have TravicCI enabled (as this was required for our project to use). Besides that, we've also got a full instance of Jenkins running with the pull request builder. Now this all works fine, and in the overview of a…
Paul
  • 471
  • 4
  • 10
21
votes
6 answers

Getting a job's build status as post-build variable

Is there a way to obtain the status of the Jenkins job in a variable during a Post-Build shell script? I want to print out the message Build Status is $BUILD_URL :: $BUILD_STATUS, where $BUILD_STATUS is the status of the current completed build…
Jose
  • 1,333
  • 5
  • 20
  • 38
21
votes
3 answers

Jenkins - retrieve full console output during build step

I have been scouring the internet for days, I have a problem similar to this. I need to retrieve the console output in raw (plain) text. But if I can get it in HTML that is fine too, I can always parse it. The only thing is that I need to get it…
Inbar Rose
  • 41,843
  • 24
  • 85
  • 131
20
votes
2 answers

Jenkins - Git Submodule Credentials Different from Parent Repo

Background Jenkins is being used to build an artifact from a Git repo that has a Git submodule. The submodule(s) are not in the same repo or even at the same endpoint as the parent project. The problem is that parent repo checks out fine because the…
DanCat
  • 2,504
  • 2
  • 19
  • 26
20
votes
3 answers

How to re-build task on Jenkins until build succeed?

I have a Jenkins job which requires a several build attepmts until it is built successfully, is there a way to keep re-building the job automatically until the job is done?
barha
  • 709
  • 1
  • 7
  • 22
20
votes
7 answers

Where is the Blue Ocean pipeline editor?

Where is the pipeline editor located within the Blue Ocean Jenkins plugin? I can see my pipeline jobs, and when clicking into these I cant see any links\buttons that take me to the editor. I'm sure in previous beta releases I could get to it, but…
mindparse
  • 6,115
  • 27
  • 90
  • 191
20
votes
3 answers

Groovy reports that a file doesn't exists when it really is present in the system

Whenever a build of my Jenkins job finishes, I'm sending an email with the results using the Editable Email Notification plugin (a.k.a. Email-ext plugin). Also, if a certain file is present in the system, I'm modifying the default content of the…
Adri C.S.
  • 2,909
  • 5
  • 36
  • 63
20
votes
5 answers

Jenkins error "No such property: docker for class: groovy.lang.Binding"

I'm trying to follow this tutorial to create a simple docker environment in as part of my Jenkins pipeline build. I'm trying to build a couple of Docker images just as a test before I do my maven build. At the moment I have the following Groovy for…
Pete
  • 1,500
  • 2
  • 16
  • 33
20
votes
2 answers

How to setup Jenkins with HA?

Currently we are using a Jenkins as our CI system and there is one master server and slaves which are provisioned by Saltstack on Openstack. If our Jenkins master server goes down, we need to create a new master and we need to pull the files from…
20
votes
3 answers

failed to execute goal org.apache.maven.plugins:maven-gpg-plugin

This error is driving me crazy. Can someone please help me? I do have gpg installed and it is also in PATH. What is causing this error!!! Am running this job on jenkins 1.5 , maven 3.0.3 on linux and windows ( both show same error) [INFO]…
user1164061
  • 4,222
  • 13
  • 48
  • 74
20
votes
4 answers

How to build a specific revision of SVN in Hudson/Jenkins

Background: We use NAnt as our building tool. Question: How can I tell Hudson to build a specific revision in SVN, instead of the latest one by default? Thanks.
Ricky
  • 34,377
  • 39
  • 91
  • 131
20
votes
3 answers

Display history of a single test result in Jenkins - additional plugin or config issue?

Currently our Jenkins server only displays a history/graph for the overall number of passed/skipped/failed tests - I'm assuming that's the behavior out of the box. If you select a single test, you'll get information for how long the test was failing…
mac
  • 2,672
  • 4
  • 31
  • 43
20
votes
3 answers

I can't find "Restrict where this project can be run" in the configure page

I use Jenkins,I can't find "Restrict where this project can be run" in the configure page,should I add some plugins? which one?
Tracy Theron
  • 343
  • 1
  • 6
  • 15
20
votes
2 answers

Jenkins JUnit Test Result Report plugin states that the JUnit xml file is not found?

The exact message received from jenkins is: No test report files were found. Configuration error? Build step 'Publish JUnit test result report' changed build result to FAILURE When configuring the JUnit Test Result Report plugin, on entering the…
Ben
  • 201
  • 1
  • 2
  • 4
20
votes
5 answers

How can I modify the Load Balancing behavior Jenkins uses to control slaves?

We use Jenkins for our CI build system. We also use 'concurrent builds' so that Jenkins will build each change independently. This means we often have 5 or 6 builds of the same job running simultaneously. To accommodate this, we have 4 slaves each…