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
24
votes
6 answers

Jenkins - How to get and use upstream info in downstream

Executing upstream job called "A". On success of A executing test cases which is downstream project "B". But while sending mail from B we have to incorporate upstream project details (upstream project name, build no) in mail. So we can easily map /…
divakar.scm
  • 1,256
  • 5
  • 21
  • 32
24
votes
4 answers

Installing Jenkins Slave as Service on win8.1 and win10

I am trying to install Jenkins slave service after starting the slave via web start. I get the following error when it tries to install on windows 10 and windows 8.1. [JenkinsWorkDirectory]$ c:\JenkinsWorkDirectory\jenkins-slave.exe…
zalimgandhera
  • 747
  • 1
  • 9
  • 23
24
votes
2 answers

Can I store Jenkins configuration in the project repo (like Travis CI)?

How do you maintain the Jenkins job configuration in SCM along side the source code? As source code evolves, so does the job configuration. It would be ideal to be able to keep the job configuration in SCM, for the following benefits: easy to see…
Charles
  • 1,153
  • 1
  • 15
  • 27
24
votes
2 answers

Jenkins Build Stability/Statisitics Report plugin

I have a jenkins instance running around 200 jobs. What I need is a plugin to show the build statistics for all the jobs. Total Builds for each project Failures Success Average time per build. Searched a lot, but couldn't find a proper report…
Upen
  • 1,388
  • 1
  • 22
  • 49
24
votes
6 answers

Jenkins transferring 0 files using publish over SSH plugin

I want to transfer files from my post build Jenkins workspace to a location on a remote server. Build goes smoothly for all steps in the job but always transfers 0 files. This is the console output: Started by user Patrick Building in…
whitepatrick
  • 251
  • 1
  • 2
  • 9
24
votes
11 answers

Jenkins email-ext plugin not sending mail

I have Jenkins version 1.480.3 installed on my machine and Email-Extention Plugin 2.30.2. Test mail from "Manage Jenkins" section works fine. When I add editable email notification to my jobs, I am not receiving it. Also tried configuring "Triggers"…
Praveen
  • 657
  • 3
  • 9
  • 23
23
votes
3 answers

How to display performance test results on Jenkins

We've written a framework to test the performance of our Java application (none of the existing frameworks, eg JMeter, were appropriate). The framework produces various metrics, e.g. mean/min/max transactions per second. We'd like each Jenkins…
Phil Harvey
  • 1,160
  • 4
  • 13
  • 19
23
votes
4 answers

How do I download a jenkins secret file from the credential store?

I can only upload an existing jenkins secret file not download the existing one. How do I download an existing secret file I uploaded to confirm its contents?
red888
  • 27,709
  • 55
  • 204
  • 392
23
votes
4 answers

In jenkins job, create file using system groovy in current workspace

my task is to collect node details and list them in certail format. I need to write data to a file and save it as csv file and attach it as artifacts. But i am not able to create a file using groovy scripts in the jenkins using plugin "Execute…
bicepjai
  • 1,615
  • 3
  • 17
  • 35
23
votes
8 answers

Jenkins Slack integration

I want to use the Slack plugin in Jenkins to ping notifications to a Slack channel. Jenkins says success when I test the connection, but I don't receive any notifications in my Slack channel. Are there any known problems? How can I get Jenkins to…
Felix
  • 5,452
  • 12
  • 68
  • 163
23
votes
3 answers

How to pass default values to a Jenkins build using the Parameterized Build Plugin?

I'm using the Parameterized Build Plugin in Jenkins. I want to provide a link to the build page, but configure the default value for one of the fields that shows up in the form. This value is going to be different every time the job is run, but I…
wxactly
  • 2,400
  • 1
  • 26
  • 42
23
votes
2 answers

How to set Jenkins environment variable from script

I'm trying to setup a script to increment the build number of my Xcode project. I make an API call to get the current build number, then I wanted to increment it and apply that new number as an environment variable so that the Xcode Plugin can use…
ChickensDontClap
  • 1,871
  • 4
  • 22
  • 39
23
votes
10 answers

Jenkins ext-email plugin fails to send email on build success

I have Jenkins version 1.480.3 installed on my machine and Email-Extension Plugin 2.28. I have configured my jobs on Jenkins and everything works fine except the final build success email. I have configured four triggers for Email-Extension…
user1891622
  • 311
  • 1
  • 4
  • 10
22
votes
4 answers

MountVolume.SetUp failed for volume "kube-api-access-fcz9j" : object "default"/"kube-root-ca.crt" not registered

I have an on-premise kubernetes cluster v1.22.1 (1 master & 2 worker nodes) and wanted to run jenkins slave agents on this kubernetes cluster using kubernetes plugin on jenkins. Jenkins is currently hosted outside of K8s cluster, running 2.289.3.…
P. Phalak
  • 457
  • 1
  • 4
  • 11
22
votes
6 answers

Run Jenkins Pipeline with Code from Git

I want to use following Pipeline script from git in jenkins #!groovy pipeline { agent any stages { stage('Build') { steps { echo 'Building..' } } stage('Test') { …
J.Doe
  • 586
  • 2
  • 8
  • 30