Re: Jenkins "Issue Tracker" Unable to login(https://issues.jenkins-ci.org)

2016-11-24 Thread Daniel Beck
> On 21.11.2016, at 14:37, easonjim1...@gmail.com wrote: > > userid:easonjim Your account exists but it apparently wasn't synced to Jira. I'm still working to figure out a solution, but if you can deal with a different user name, you could just register a new account instead of waiting. -- Y

Re: Jenkins "Issue Tracker" Unable to login(https://issues.jenkins-ci.org)

2016-11-24 Thread easonjim1919
Thanks to Daniel Beck for your help. I re-use Google mailbox registered an account, now Wiki and Jira can log on. thank you very much. On Thursday, November 24, 2016 at 4:09:48 PM UTC+8, Daniel Beck wrote: > > > > On 21.11.2016, at 14:37, easonj...@gmail.com wrote: > > > > userid:easonjim > >

Re: Pipeline and Maven dependency build trigger

2016-11-24 Thread 'Richard Hierlmeier' via Jenkins Users
I am thinking about the following use case - Use the jgitflow-maven-plugin to create for each feature a branch. This plugin sets in the pom a branch dependent version number (x.x.x--SNAPSHOT). - In Jenkins a multibranch job is triggered. It performs the maven build and deploys t

Re: Empty Worspace, don't know why

2016-11-24 Thread Chloé B
Hello Jerome and everybody, I have now an other problem. I can't acess to localhost. Do you have any idea ? I didn't touch anything since yesterday, I don't understand why... I send a screenshot : Chloé Le mercredi 23 novembre 2016 18:00:31 UTC+1, jer...@bodycad.com a écrit : > > Salut, > >

RE: Empty Worspace, don't know why

2016-11-24 Thread Paxton, Darren
You’re not showing how you’re connecting so I suspect you’ve put the wrong details in http://localhost:8080 should be correct. -- From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Chloé B Sent: 24 November 2016 10:13 To: Jenkins Users Subject: Re: Em

Re: Empty Worspace, don't know why

2016-11-24 Thread Chloé B
Thanks for your respons ! :) It still doesn't work. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@googlegroups.com. To view this d

RE: Empty Worspace, don't know why

2016-11-24 Thread Paxton, Darren
Did you restart your computer and not restart Jenkins? From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Chloé B Sent: 24 November 2016 10:23 To: Jenkins Users Subject: Re: Empty Worspace, don't know why Thanks for your respons ! :) It still doesn't wo

Re: Empty Worspace, don't know why

2016-11-24 Thread Chloé B
Ok, I did the technique of those who don't understand too much (like me haha). I uninstall then install back and... it works. I think it's me who don't understand a lot Jenkins. Perhaps someone have a great tutorial for me ? Because, I really don't know what to put in the Workspace (my first pr

Re: groovy template help.

2016-11-24 Thread Bubunia Patra
On Thursday, November 24, 2016 at 11:45:16 AM UTC+5:30, Baptiste Mathus wrote: > > So what does not work? What is the error? > Code : I want to print TestName after parsing the JUNIT xml. I want to parse the jUNIT and fill the table, Test Name <% def junitResultList = it.JUnitTestResul

Load tests strategy (servers, pipeline, etc)

2016-11-24 Thread Matias Burni
Hi all, I have several load tests and they are launched manually. I would like to automate this but I need some ideas about the how. *SCENARIO* - [optional] Update the version of the App: App-Server and App-Client (with command yum, as we have an internal yum server, yes we´re in Cent

Pipeline build crashes depending on who started it?

2016-11-24 Thread Jonathan Hodgson
Hi, I've set up a try-before-commit build using the pipeline, and a script on the client that sends a diff and starts a build. Now if I run this, it works fine (the jenkins machines are on my local network, but I access them through a global url) However if my colleague runs it, then everythin

Re: Docker vs Docker-compose with Jenkins

2016-11-24 Thread 'Peter Teichner' via Jenkins Users
Hi! Thanks for coming back to me: My difficulty comes from the complexity of the different software components. So for example I have the application container that needs to talk to the mongo container. And the reason I used bind mount is so the maven image can resolve the application by it's

p4 plugin and p4ticket issue

2016-11-24 Thread Qiang
Hi, Does any one use p4ticket with p4 plugin? I set up a credential using "Perforce Ticket Credential". Set the values for P4Port, Login with Ticket Value, and Trust, click "test connection", and it reports "Success". Set up a job (Pipeline DSL ) referring to this credential to do a p4sync.

Re: Load tests strategy (servers, pipeline, etc)

2016-11-24 Thread Jorge Peña Cotarelo
The idea of throwing the tests by SSH and capturing logs by some Logstash seems cool, I would not use the same machines as Jenkins slaves since they could affect performance, so all by ssh. I would also use an isolated data network and similar hardware to the production one, will give you more

Re: Example of a working pod with the kubernetes-ci plugin

2016-11-24 Thread Sébastien Douche
On Wed, Nov 23, 2016, at 22:12, Carlos Sanchez wrote: Hi Carlos > I suggest using the Kubernetes Jenkins plugin that can do exactly what > you want using pipeline > https://github.com/jenkinsci/kubernetes-plugin/blob/master/README.md#pipeline-support Doesn't work for me: https://issues.jenkins-c

Re: Pipeline build crashes depending on who started it?

2016-11-24 Thread Jonathan Hodgson
After deleting the relevant workspace folder and getting my colleague to trigger another build, I get a different, but I suspect related, error java.io.IOException: remote file operation failed: C:\Jenkins\workspace\WPF\TryBuild\Hugo Brangwyn\PluginWrapper at hudson.remoting.Channel@6b81cdda:C

Re: Docker vs Docker-compose with Jenkins

2016-11-24 Thread Baptiste Mathus
IIUC this is not a Jenkins issue but a Docker one. You should apparently look at volumes (create a named volume and share it between containers, don't use bind mounts/the host fs directly). Also, don't know mongo, but are you really directly accessing the db data?! Shouldn't you through a socket o

Re: groovy template help.

2016-11-24 Thread jerome
Hi, I can give you my template I used to have when non pipeline (haven't tested it into the pipeline, I went Jelly). Here's the code for JUnit part <% def junitResultList = it.JUnitTestResult if (junitResultList.size() > 0) { %> JUnit Tests <% it.JUnitTestResult.each{ junitResult ->

Re: groovy template help.

2016-11-24 Thread jerome
For the template part, here's some header variables (I do the same with jelly but I replace the value before giving the template to emailExt): <% style_default = "font-family:Verdana,Helvetica,sans serif; font-size:11px; color:black;" style_header = "color: black;" style_bg1 = "color:white; bac

Re: Pipeline build crashes depending on who started it?

2016-11-24 Thread Jonathan Hodgson
Further investigation shows that if I log in as third user,windows builds fail in the same way. So it seems the determining factor is which user triggers the build, despite the fact that they all have admin priviiedges. Some help on this would be much appreciates. It's taken me ages to get the

How to add "text Section" in a view at the top automatically?

2016-11-24 Thread Hanu
Hi all, I am maintaining a view called "News" on jenkins home page as default view. I will be adding the project updates on the "news" view frequently. ( for Ex: plugin update info, plugin install etc..) Every time I add a "Text Section", a new text section creates at the bottom of all the text s

Re: groovy template help.

2016-11-24 Thread Bubunia Patra
Hi Jerome, I want all the information in tabular format. If you refer to my original email i had the JUNIT groovy template that you have. Your/My original template will actually print something like this: Testcase | Status | Pass | Fail | Skipped | Total TestResult: Name : abc Status : Pass Pas

Jenkins: S3 Copy Artifact Build parameters not supported in project name field

2016-11-24 Thread Devesh
Hi, favorite In our jenkins Configuration, we have two Projects One Project(Multi Branch Free Style) is used to build .Net project and puts the artifacts

Re: How to make Pipeline job trigger on GitHub push?

2016-11-24 Thread Ola Eldøy
I have found a way to get this working, by setting up four Jenkins "Freestyle projects" that trigger when code is pushed to their corresponding GitHub repos. Then, in the master pipeline project, I add the projects under "Build Triggers" and "Build after other projects are built" I was hoping t