Re: Jenkins/GitHub integration

2014-09-15 Thread Marius Gedminas
On Fri, Sep 12, 2014 at 11:34:44AM -0400, Mike Seda wrote: Hi All, I am a Systems Administrator who was recently asked to perform a Jenkins/GitHub integration. The requirements are... 1) When a GitHub pull request is made, start a Jenkins build. 2) Tell GitHub through the APIs that a

Re: Jenkins GitHub Integration

2013-12-25 Thread Balasubramaniyan Kannan
Did you guys get a solution for this issue. Thanks, Bala On Sunday, September 23, 2012 9:52:02 PM UTC+8, Ramesh Ankam wrote: Hello Group, I installed Jenkins 1.4.x on Linux/Tomcat6. We have our code base in GitHub, we are unable to get clone the workspace for public and private GitHub

Re: Jenkins GitHub Integration

2013-12-25 Thread Mark Waite
Since the message was sent 15 months ago, I assume they found a solution. Is there a reason you asked a question checking the status of question opened 15 months ago? In case others see the problem, I would first check if a correct path is configured for the git command. The command should be

Re: Jenkins GitHub Integration

2013-02-01 Thread Kyle Boon
You set up an ssh key with github but then you provided a url with HTTPS as the protocol so your ssh key isn't being used. Use the SSH URL of your git repo and it should work without needing a username and password. On Monday, January 28, 2013 2:23:20 PM UTC-6, Kevin Fleming wrote: You can

Re: Jenkins GitHub Integration

2013-01-29 Thread n8gray
For secure storage use a git credentials helper. See this answer on SO: http://stackoverflow.com/a/12938677/103934 On Monday, January 28, 2013 12:49:17 PM UTC-8, Chester Chen wrote: Kevin, Thanks worked The only draw back is that now I have the clear password in the

Re: Jenkins GitHub Integration

2013-01-28 Thread Chester Chen
Hi, I have the same issue with private repository. Hope someone can provide a pointer. git version 1.7.9.5 jenkins -- 1.500 Jenkins GIT plug -- 1.1.26http://ec2-50-18-85-116.us-west-1.compute.amazonaws.com:9090/pluginManager/plugin/git/thirdPartyLicenses GitHub plugin

Re: Jenkins GitHub Integration

2013-01-28 Thread KEVIN FLEMING (BLOOMBERG/ 731 LEXIN)
You can create a .netrc file in the home directory of your Jenkins user on the machine(s) where you are doing the git operations; this will allow Git to perform HTTP authentication without actually prompting for a username/password combination. - Original Message - From:

Re: Jenkins GitHub Integration

2013-01-28 Thread Chester Chen
Kevin, thanks for the reply, I am not familiar with .netrc, what should I put into the .netrc file ? Chester On Monday, January 28, 2013 12:23:20 PM UTC-8, Kevin Fleming wrote: You can create a .netrc file in the home directory of your Jenkins user on the machine(s) where you are

Re: Jenkins GitHub Integration

2013-01-28 Thread KEVIN FLEMING (BLOOMBERG/ 731 LEXIN)
The first hit in a Google search for git .netrc is: https://gist.github.com/1072829 ... and it shows you exactly what to do. - Original Message - From: ches...@tingatech.com To: jenkinsci-users@googlegroups.com Cc: KEVIN FLEMING (BLOOMBERG/ 731 LEXIN) At: Jan 28 2013 15:33:30 Kevin,

Re: Jenkins GitHub Integration

2013-01-28 Thread Chester Chen
Kevin, Thanks worked The only draw back is that now I have the clear password in the .netrc file. very much appreciated. Chester On Monday, January 28, 2013 12:37:30 PM UTC-8, Kevin Fleming wrote: The first hit in a Google search for git .netrc is: