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
20
votes
2 answers

Jenkins - trigger post-build action based on parameter

I have a Jenkins job set up that builds my iOS Xcode project and archives the resulting IPA file. In addition, I have also installed the Testflight plugin to upload the IPA file as a post-build action. That's all working fine, and my question is…
JGATX
  • 203
  • 1
  • 2
  • 4
19
votes
3 answers

How to use "findFiles" in a Jenkinsfile?

My Jenkinsfile contains this stage: stage('Deploy') { steps { script { def rpmFiles = findFiles glob: "**/*.rpm" def rpmFile = rpmFiles[0] } } } I want to use this to deploy an artifact to a server.…
Lalchand Mali
  • 211
  • 1
  • 2
  • 11
19
votes
5 answers

Jenkins Docker Pipeline override working directory

I have noticed when using Jenkins with the Docker Pipeline plugin. When I create a Jenkins file to run commands in a docker container that it always creates a volume mapping of the Jenkins workspace directory mapped to the same path in the running…
julianlab
  • 309
  • 1
  • 2
  • 9
19
votes
2 answers

"Secret text" Git credentials not showing up in Jenkins project Source Code Management section

I am unable to see any Secret text credentials in the drop down in my Jenkins' project SCM section. I know that creating a Secret text credential from the drop down in SCM section is broken, but even if I create the credential by navigating to…
Scott Storch
  • 794
  • 3
  • 9
  • 16
19
votes
2 answers

Basic Auth with Jenkins http-request-plugin

I am trying to make a simple POST-request with the "Http Request Plugin". My problem is with getting the credentials to work. I have set a global credential, user:pass. But trying this in my…
Torbilicious
  • 467
  • 1
  • 4
  • 17
19
votes
1 answer

Using Multi-configuration projects with Jenkinsfile (build pipeline plugin)

I am trying to create a multi-configuration project that tests a bunch of builds that defines a compatibility matrix (for example by browser and os). I would like to define the steps for a single combination via Jenkinsfile. How can I achieve this?…
Ankur Chauhan
  • 1,393
  • 2
  • 17
  • 37
19
votes
3 answers

Jenkins - How to set authorization on project basis

In Jenkins I have two different projects and two users I want to authorize: User1 can only view, build, deploy Project1. User2 can only view, build, deploy Project2. I have installed role based plugin, but am unable to get it working. Please help.
Ranjit choudhary
  • 253
  • 1
  • 2
  • 15
19
votes
5 answers

Jenkins integration with Grunt

I've setup Jenkins v1.550 on Windows Server 2008 R2. It runs as a service at http://localhost:8080 for now. I'm logged into the machine as an Administrator. I've installed Node.js and can run "npm" from the command line. I've also installed the…
tempid
  • 7,838
  • 28
  • 71
  • 101
19
votes
3 answers

How to copy file from SSH remote host to Jenkins Server

We are using Jenkins server for our daily build process and executes some bash scripts on remote hosts over SSH. This scripts are generating html log files on remote hosts. We are using Copy to slave plugin to copy files on slave machines and…
Not a bug
  • 4,286
  • 2
  • 40
  • 80
19
votes
6 answers

Running a parameterized job at a particular time in jenkins

I have a parameterized job which I want to schedule it to run at a particular time. Is there anyway I can choose my parameters and schedule it to run. Thanks in advance
Kishore Tamire
  • 2,054
  • 5
  • 23
  • 25
19
votes
2 answers

Jenkins: How do I use the Parameterized Trigger Plugin and pass a subversion revision?

IMO, this use case really needs to be specifically spelled out on the plugin's webpage/documentation. Let's say I have a project named U for upstream and D for downstream. When U finishes building, I want D to checkout the same revision that U…
Daniel Kaplan
  • 62,768
  • 50
  • 234
  • 356
18
votes
3 answers

How do I configure "Scan Multibranch Pipeline Triggers" in my jenkinsfile?

Right now I manually configure my all my multibranch pipeline jobs and set "Scan Multibranch Pipeline Triggers" to 3 minutes. How do I put this in my Jenkinsfile? I can't find examples of this. Is "Scan Multibranch Pipeline Triggers" available in…
red888
  • 27,709
  • 55
  • 204
  • 392
18
votes
3 answers

What are seed jobs in Jenkins and how does it work?

What are seed jobs in Jenkins and how does it work ? Can we create a new job from seed job without using github ?
Sreevalsa E
  • 905
  • 5
  • 17
  • 39
18
votes
7 answers

Jenkins and Office365 email notification settings

Environment: Windows 2008 R2 Jenkins 1.580.2 LTS Mailer plugin 1.12 Email Extension Plugin 2.39 Java 8 I have some problems with configuring my Jenkins CI server to send email notifications after moving to the Business account in Office365. So…
sturman
  • 563
  • 1
  • 4
  • 19
18
votes
3 answers

Jenkins embeddable build status icon not shown

I want to use the Embeddable Build Status Plugin for Jenkins. I am using Cloudbees. I granted Job/ViewStatus permissions to the anonymous user. When I add the Markdown to the README.md no icon is shown. I tried both the protected and the unprotected…
JJD
  • 50,076
  • 60
  • 203
  • 339