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
42
votes
5 answers

How to set and reference a variable in a Jenkinsfile

I have a declarative pipeline script for my multibranch project in which I would like to read a text file and store the result as a string variable to be accessed by a later step in the pipeline. Using the snippet generator I tried to do something…
42
votes
9 answers

How to customize Jenkins build name?

When I run a job in Jenkins, each build is given a name that shows in the UI in Build History that's basically the current date and time. I'd like to be able to put in build parameters there so that I can see in the build history which branches have…
slacy
  • 11,397
  • 8
  • 56
  • 61
41
votes
3 answers

Use Jenkins 'Mailer' inside pipeline workflow

I'd like to leverage the existing Mailer plugin from Jenkins within a Jenkinsfile that defines a pipeline build job. Given the following simple failure script I would expect an email on every build. stage 'Test' node { try { sh 'exit…
rkeilty
  • 413
  • 1
  • 4
  • 6
41
votes
4 answers

Jenkins-Build when a change is pushed to GitHub option is not working

Jenkins is running on localhost. I have my repository in GitHub. I have the option to 'Build when a change is pushed to GitHub' checked. When I click 'Build Now', build is done successfully, no issues there. But when am committing code to my…
Anuj Balan
  • 7,629
  • 23
  • 58
  • 92
40
votes
3 answers

Hudson Build-Time Trend Plugin?

Is there a plugin which would allow me to create a "trend" graph for a hudson build which shows the build time for that project? I'm tasked with speeding up the build and I'd like to show a nice trend as I speed it up.
SamBeran
  • 1,944
  • 2
  • 17
  • 24
40
votes
5 answers

Jenkins + git: "tell me who you are" error, why does it need to tag?

Just installed Jenkins in Ubuntu 12.04 and I wanted to create a simple build that just clones a project and builds it. It fails because it cannot tag. It cannot tag because it errors out saying "tell me who you are" apparently because I didn't set…
knocte
  • 16,941
  • 11
  • 79
  • 125
39
votes
4 answers

intellij : control jenkins plugin crumb data

i've installed jenkins server and run it. i've installed kenjins control plugin on intellij as described in this lin https://github.com/dboissier/jenkins-control-plugin try to configure jenkins settings --> test connection gives me [Missing or bad…
jam
  • 485
  • 2
  • 5
  • 14
38
votes
4 answers

jenkins keeps throwing Bad Message 431 reason: Request Header Fields Too Large

I have recently upgraded to jenkins 2.89.4(jdk8). I am continuously getting below error on a redirected page whenever I go into the configuration tab of any jenkins job. Bad Message 431 reason: Request Header Fields Too Large There is not enough…
UserASR
  • 2,015
  • 4
  • 24
  • 47
38
votes
14 answers

Jenkins Setup Wizard Blank Page

I have just installed Jenkins on my RHEL 6.0 server via npm: npm -ivh jenkins-2.7.2-1.1.noarch.rpm I have also configured my port to be 9917 to avoid clashing with my Tomcat server, allowing me to access the Jenkins page at ipaddress:9917. After…
Tony Tony
  • 455
  • 1
  • 4
  • 9
38
votes
1 answer

Do I need sonar and sonar runner for Jenkins?

I want to set up Sonar with Jenkins. But I'm not sure if the Sonar site describes two different ways to do this or if there are two necessary steps: As far as I understood it, it's two different ways. If this is the case, what is the difference and…
user1338413
  • 2,471
  • 8
  • 29
  • 36
37
votes
4 answers

How to retrieve deleted Jenkins job?

Is there any method or plugins available to retrieve deleted Jenkins job? I have mistakenly deleted one job from Jenkins. So please give a suggestion to undo the delete.
mahinlma
  • 1,208
  • 3
  • 11
  • 24
37
votes
7 answers

Display HTML page inside mail body with Email-ext plugin in Jenkins

I am new to Jenkins and I want to know how it is possible to display the HTML report (not the HTML code) generated after a successful build inside a mail body (not as an attachment). I want to know the exact steps I should follow and what should be…
HobbitOfShire
  • 2,144
  • 5
  • 24
  • 41
36
votes
3 answers

continuous deployment with jenkins

I want to deploy with jenkins to the test environment and to the production environment. To do so I need to connect to the server of the wanted environment, something like ssh/scp. I would like to know what the best way is. I found some plugins to…
user1338413
  • 2,471
  • 8
  • 29
  • 36
35
votes
26 answers

Unable to find plugins in list of available plugins in jenkins

I have installed Jenkins by deploying its WAR file to Tomcat. On typing http://localhost:8080/jenkins In browser, jenkins home page is opening which means jenkins is successfully installed. I configured system settings, gave jdk and maven path and…
user2198112
  • 463
  • 1
  • 4
  • 7
34
votes
1 answer

Correct usage of stash\unstash into a different directory

In one of my stages I need to copy the contents of two folders after a build is completed and copy to a different directory. I am actually converting a freestyle job to pipeline, and have been using the artifact deployer plugin. Reading around, it…
mindparse
  • 6,115
  • 27
  • 90
  • 191