Questions tagged [jenkins]

Jenkins is an extendable open source continuous integration server

It is built in Java and has many plugins to support,build and test projects.

More info on the official website.

654 questions
4
votes
3 answers

Jenkins build happening on master instead of slave

I have been working on an android OS build automation through Jenkins and the repository is massive and the build itself takes a fair amount of time. Therefore, I need to to run on my slave that has much more power and threads available for the…
Husk Rekoms
  • 217
  • 1
  • 4
  • 15
4
votes
1 answer

IIS10 URL Rewrite 2.1 double encoding issue

I have an IIS10 server with ARR 3.0 and URL Rewrite Module 2.1 that acts as a reverse proxy for several other web servers. The other servers run on different ports, so the IIS10 server provides 'friendly URLs' on port 80. URL rewriting is used to…
Jorge Martins
  • 161
  • 1
  • 5
4
votes
0 answers

Jenkins: How to verify downloaded plugins against security threat or corruption?

I am running a Jenkins 2.67 on a Red Hat 7 inside a corporate network. It can only access internet over a forward proxy restricting requests to HTTPS URLs only. By default Jenkins downloads the plugins list from http://updates.jenkins-ci.org/ as…
Antoine Wils
  • 156
  • 4
4
votes
2 answers

Remote SSH command hangs, but only when executed through Jenkins

Disclaimer: I'm a bit new to the community, please be gentle :) I'm having an SSH issue that I just can't seem to explain. As a bit of background, here's the problem that I'm solving: There are several disparate Java services that existing within…
cerberus
  • 322
  • 3
  • 8
4
votes
3 answers

Trigger Jenkins job from Bitbucket Pull Request

There are various ways to trigger a Jenkins job from an SCM like Bitbucket, but what I want to do specifically is trigger a build using the branch that is the source of the Pull Request. Up to now, we have used the Bitbucket Pull Request Builder,…
Garreth McDaid
  • 3,449
  • 1
  • 27
  • 42
4
votes
1 answer

How to enforce a minimum password length in Jenkins?

As part of our audit the users have to set passwords with certain length. Under Jenkins --> Configure Global Security --> I can enable security and select Jenkins own user database. But I haven't found a way to set the rules for password. Is…
Houman
  • 1,545
  • 4
  • 22
  • 36
4
votes
2 answers

Jenkins github pull request builder picks wrong commit

I am using Jenkins with the plugin GitHub Pull Request Builder. I then have set up webhooks from GitHub to trigger a build in jenkins when a new Pull Request is opened or committed to. I configured the GHPRB plugin with the Jenkins DSL: job("name")…
benedikt
  • 95
  • 2
  • 7
4
votes
1 answer

Can Jenkins run a shell script located outside of the Jenkins workspace?

Can Jenkins run a shell script located outside of the Jenkins workspace? I am wondering if I can get Jenkins to run scripts outside of the Jenkins workspace that are not sourced within any kind of source control repository. Does Jenkins have a…
djangofan
  • 4,182
  • 10
  • 46
  • 59
4
votes
1 answer

Jenkins pulling from Bonobo Git Server

I have installed Jenkins Git plugin for SCM on Jenkins Bonobo Git Server To configure Jenkins to build from Git I type in url, which is on my local network http://devserv/Bonobo.Git.Server/.git, then i precede to type in username and…
Bjørn
  • 276
  • 2
  • 6
  • 10
4
votes
2 answers

Extract data that Jenkins receives from POST hooks sent by eg. github or bitbucket

I have a Jenkins job Trigger builds remotely (e.g., from scripts), and bitbucket PULL request HOOK triggers that job we can say everything works fine. Jenkins is smart to check any change and build them. On each build there is data that is changed…
titus
  • 414
  • 1
  • 7
  • 17
4
votes
1 answer

SSH 'connection reset' when attempting multiple simultaneous outbound connections to the same host

I have a script that executes a Rake remote task which executes once for each of two roles. Both roles are users on the same Vagrant instance. So essentially the task is opening two SSH connections to the same VM in parallel and executing some…
yixu34
  • 43
  • 4
4
votes
1 answer

How to setup user groups based on Active Directory in Jenkins?

Is it possible to create user groups using Active Directory id's and then assign roles in Jenkins? Instead of using Jenkins default user name management?
Nair
4
votes
3 answers

Why is Jenkins not pulling in a browser?

I installed Jenkins on my debian server. It is set on port 8080 and when I try connecting to it nothing happens. I know it is running because when I do: root@jini01:/etc/default# /etc/init.d/jenkins restart I get this back. [ ok ] Restarting…
4
votes
2 answers

Change standalone Jenkins default URL

Running Jenkins standalone (The WAR file, java -war ./jenkins.war or whatever the command is) listening on a non-standard port. I want to get NGINX to proxy from our HTTPS site /jenkins/ to this standalone. location /jenkins/ { proxy_pass…
user80776
4
votes
1 answer

Trigger only if build fails

I'm implementing a deployment/rollback procedure using Jenkins 1.430. I would like to configure the deployment and the rollback steps as 2 separate jobs so as to be triggered independently if needed. However I would also like the rollback to be…
Max
  • 3,523
  • 16
  • 53
  • 71