Re: Git+Jenkins authentication question

2015-05-28 Thread Mark Waite
You may find it simpler to use ssh with a private key for Jenkins access to the repository rather than wrestling with username / password authentication through https. You'd then register your ssh public key with the GitHub server and register the private key with the Jenkins server (through the c

How to Break build if the test with karma and protractor fail on the remote server.

2015-05-28 Thread Erick Macedo
Hi How to Break build if the test with karma and protractor fail on the remote server. I am running my test via ssh with the plugin "Publish over SSH" and Exec command field: cd / cygdrive / c / jenkins / project-sale-mobile / deliver-main / build / sell-mobile / node_modules / grunt-cli / bi

Re: NullPointerException in org.jfrog.hudson.maven3.extractor.MavenExtractorEnvironment.buildEnvVars(MavenExtractorEnvironment.java:132)

2015-05-28 Thread Kanstantsin Shautsou
NPE is always a bug, please fill issue for artifactory-plugin component On Thursday, May 21, 2015 at 11:09:05 PM UTC+3, John Lemp wrote: > > Not sure if it is the same issue but we had the same error after upgrading > Jenkins and the artifactory plugin. The project settings for the > Artifactor

Re: Docker Plugin 0.9.0-RC1

2015-05-28 Thread Kanstantsin Shautsou
Please fill issue with providing steps for reproducing. On Wednesday, May 13, 2015 at 5:50:50 AM UTC+3, Richard Bywater wrote: > > Hi > > I've been playing with the latest RC1 version of the Docker Plugin to see > if it fixes some of the issues I had previously. > > Overall it seems a bit more

How to jenkins interact with tests carried out with Karma via ssh

2015-05-28 Thread Erick Macedo
hi, After much difficulty I can carry out the project for a transfer windowns server via ssh and run the grunt test. Now my problem is the implementation of these test, the grunt performs functional tests with karma and stores it in an xml, the jenkins displays the result on the console. But

Re: [workflow-plugin] Error "script.sh: command not found" when running shell script

2015-05-28 Thread Les Mikesell
On Wed, May 27, 2015 at 1:39 PM, Boris Chavez-Bravo wrote: > I think I have been able to get around this issue by wrapping the call to > the script through a batch call: > > withEnv(["PATH=C:\\cygwin\\bin;%PATH%"]) { > bat "C:\\cygwin\\bin\\bash ./my_script.sh ${arg1} ${arg2}" > } > I don't mean

Can I Migrate a Windows Jenkins Master to a Linux Jenkins Master?

2015-05-28 Thread Billy Duran
Hey All, I currently have a Windows Jenkins Master that utilizes multiple Slaves/Nodes to carry out different builds and deployments. I want to migrate the Jenkins Master Node to a CentOS system. Would anyone happen to have experience with migrating a Master from a Windows machine to a Linux

Git+Jenkins authentication question

2015-05-28 Thread Dan Stromberg
Our github admins recently turned off anonymous git access for public repos. As a result, several of our jenkins builds are having problems checking out their code. I see a git-related “credentials” pull down in one of the jobs' configuration pages, and I've set my own creds on it, but it do

Re: Jenkins 1.607 - Environment Variables Stuck

2015-05-28 Thread Igor Kostenko
Deleting slave on master and recreating it helped, so environment stored somewhere on master - and not just path - all environment variables. Master is 1.611 On Thursday, 28 May 2015 18:25:29 UTC+1, Igor Kostenko wrote: > > Hello Everyone, > > I'm installing new jenkins slave on Windows Server 2

Re: Jenkins 1.607 - Environment Variables Stuck

2015-05-28 Thread Igor Kostenko
Hello Everyone, I'm installing new jenkins slave on Windows Server 2008 R2 and have exactly the same issue. Previously we were using Windows 7 as windows slaves (master is on linux) and I never had such issue. And I cannot find old path in windows registry, slave hdd and master directory. Have

Re: Can REST API be used for $JENKINS_HOME/config.xml changes?

2015-05-28 Thread Hugh Esco
Related post to the -dev@ list: Should API support management of $JENKINS_HOME/config.xml ??? https://groups.google.com/forum/?hl=en#!topic/jenkinsci-dev/a-gKzV6Z2Q8 On Tuesday, May 26, 2015 at 6:33:46 PM UTC-4, Hugh Esco wrote: > > Browsing to: > http://ci.example.com:8080/jenkins/configureSecu

Jenkins: a heavily branched chain of build jobs

2015-05-28 Thread Виталий Исаев
We would like to set up Continuous Integration and Continuous Deployment processes on the base of Jenkins ecosystem. Currently we're trying to put together all the Jenkins build jobs we have (from sources to several endpoint processes launched on the testing server). There are three kinds of

Re: Deleting old builds on nodes

2015-05-28 Thread Dan Sirgey
I assume you're asking if there's a Jenkins presence on the slave machine outside the ssh connection? If so, yes it is a dumb slave. On Thursday, May 21, 2015 at 3:17:30 AM UTC-4, niraj nandane wrote: > > Is your node is Dumb slave node ? > > On Thursday, May 7, 2015 at 8:16:43 PM UTC+5:30, Dan S

Re: Can REST API be used for $JENKINS_HOME/config.xml changes?

2015-05-28 Thread Hugh Esco
need new defined type for managing $JENKINS_HOME/config.xml #313 https://github.com/jenkinsci/puppet-jenkins/issues/313 On Tuesday, May 26, 2015 at 6:33:46 PM UTC-4, Hugh Esco wrote: > > Browsing to: > http://ci.example.com:8080/jenkins/configureSecurity/api/xml > > reports: > *description* *Th

Re: Embedded software tests with Jenkins

2015-05-28 Thread Slide
In general, if you can do it from the command line, you can probably do it through Jenkins. If you want to have jenkins display test failures an so forth, you would want to generate a file in the format that one of the test running plugins expects. On Thu, May 28, 2015 at 12:08 AM wrote: > Hi ev

HPQC Plugin for QC10 regression test

2015-05-28 Thread david.doughty
I have a project trying to invoke their HPQC/QTP tests from Jenkins, they are running up against runTestSet.vbs(163, 5) Microsoft VBScript runtime error: ActiveX component can't create object: 'TDApiOle80.TDConnection' I’ve googled this; there are numerous references to the x32 on x64 cscript,

Re: executing multiple projects

2015-05-28 Thread Panikera Raj
Hey Thanks Hiteswar for quick turn around, Yup, I have achieved this with build flow plugin. this looks fine Thanks... Regards, Panikera On Thu, May 28, 2015 at 12:18 PM, Hiteswar wrote: > What about to try with Parameterized Trigger Plugin[1]. > > Create a master project M. > Create another

Jenkins API - lunch a build and get build number in one atomic action

2015-05-28 Thread Yotam Eliraz
I want to lunch a build by Jenkins API and get in return the build number that this call has started. However, because of synchronizations considerations, I don't want it to happened in 2 seprate calls (like: lunchJobBuild(), getJobLatestBuildNumber()), but instead I am looking for an API cal

Embedded software tests with Jenkins

2015-05-28 Thread wiktor . romanczuk
Hi everyone! I'm trying to introduce CI server in my company and I'm totally new to Jenkins. I would like to ask some questions in order to know whether Jenkins would fulfill our requirements for testing purposes. Projects we're working on are mainly *embedded software for microporcessors and