Re: Unable to Load Images and Java script files and Css in Genkins html Report file

2018-03-20 Thread Venkatesh Lingutla
Hi Daniel , Thank you for the replay Perhaps a problem with relative paths? Your browser's request console will tell you what's going wrong. : Yeah i got the console error in my browser please see attachment Thanks, Venkat On Tuesday, March 20, 2018 at 6:26:51 PM UTC+5

Re: Jenkins view frame not loading

2018-03-20 Thread 'Jenkins User' via Jenkins Users
Yep, that fixed it. Thanks so much for looking at this issue. On Tuesday, March 20, 2018 at 9:03:47 PM UTC-5, Daniel Beck wrote: > > > > On 21. Mar 2018, at 02:40, 'Jenkins User' via Jenkins Users < > jenkins...@googlegroups.com > wrote: > > > > Sorry about that! Here is the complete stack tra

Re: Jenkins view frame not loading

2018-03-20 Thread Daniel Beck
> On 21. Mar 2018, at 02:40, 'Jenkins User' via Jenkins Users > wrote: > > Sorry about that! Here is the complete stack trace. This is View Job Filters Plugin's "Build Filter (Wrapper) Column"; either the config of the current view uses it but didn't properly configure it, or there's just so

[ANN] Blog post: Evolving Mission of Jenkins

2018-03-20 Thread Kohsuke Kawaguchi
Some of you might have seen the new initiatives that are being discussed in the dev list and/or in recent blog posts. These are exciting projects, but beside their own technical values, those two together along with efforts like Blue Ocean and Jenkins 2, they form an important evolution of the mis

Re: Jenkins view frame not loading

2018-03-20 Thread Daniel Beck
> On 20. Mar 2018, at 22:55, 'Jenkins User' via Jenkins Users > wrote: > > Attached is the screenshot. Did anyone experience this issue? > Your screenshot does not include the only relevant part: The exception message and stack trace. Please post that (as text, and not as screenshot). --

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

2018-03-20 Thread Carlos Sanchez
Yes it totally does. You need to open the ports from agent to master On Tue, Mar 20, 2018, 21:19 Fadi Al-Farah wrote: > I'm also interested in this.. Does this plugin support having a Jenkins > master running somewhere else and the slaves in the k8s cluster? > > > On Thursday, December 28, 2017

Re: Blue Ocean UI takes 20-30 min to load

2018-03-20 Thread Vivek Pandey
Hi Andrei, We made optimization fixes on blueocean dashboard load time recently. Relevant PRs were for optimized favorites loading ( https://github.com/jenkinsci/blueocean-plugin/pull/1638) and optimize latestRun object in pipeline response ( https://github.com/jenkinsci/blueocean-plugin/pull/163

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

2018-03-20 Thread Fadi Al-Farah
I'm also interested in this.. Does this plugin support having a Jenkins master running somewhere else and the slaves in the k8s cluster? On Thursday, December 28, 2017 at 4:17:56 PM UTC-5, Vamsi krishna wrote: > > @carlos > i checked the logs but there is nothing showing in the logs jenkin

Re: Evaluation of $WORKSPACE seems wrong

2018-03-20 Thread Björn Rohlén
Hello. Seems correct to me -- you are executing on the same node, there is no reason for it to be different within the same job. If you have multiple nodes you will have to stash / unstash to bring any files with you from previous step you have not published to an artifact repository like nexus

Re: Error: Invalid or corrupt jarfile jenkins.war

2018-03-20 Thread Mark Waite
I think you may want to reconsider running the Jenkins server on nonstop. If you need to build on nonstop, you need an agent on nonstop. You could host the server on a more common operating system (Linux is my first choice, Windows a second choice). You'll be less likely to surprised by unexpecte

Evaluation of $WORKSPACE seems wrong

2018-03-20 Thread Rasmus Uth Pedersen
Hi, Given the following Jenkinsfile I would expect two different workspaces to be printed but that is not the case. Am I doing something wrong? def getWorkspace() { path = "${WORKSPACE}" sleep 1 return path } def build_steps = [:] build_steps['first'] = { node { println

Re: Error: Invalid or corrupt jarfile jenkins.war

2018-03-20 Thread Daniel Beck
> On 20. Mar 2018, at 13:36, Meenal wrote: > > Following is the hash: > > sha256sum jenkins.war > 014f669f32bc6e925e926e260503670b32662f006799b133a031a70a794c8a14 *jenkins.war > > > Thank you Your download is corrupted. Try again until it works. $ shasum -a 256 Jenkins/wars/jenkins-2.107.1.

Re: Blue Ocean UI takes 20-30 min to load

2018-03-20 Thread chicago
This shouldn't happen. I have played with Jenkins on a $5 digital ocean 1GB instance and it doesn't take that long. Could it be a resource constraint? Maybe it was quick for me because I didn't have many pipelines? Is there an easy way to replicate your experience? Sincerely, -- You receiv

Re: Unable to Load Images and Java script files and Css in Genkins html Report file

2018-03-20 Thread Daniel Beck
> On 20. Mar 2018, at 06:27, Venkatesh Lingutla > wrote: > > When i open from server machine jobs ->project name->build number->html > reports->report folder name ..etc. It's working fine. > > When i open from genkins it's not able to open attachments. > > please see attachement for Re

Re: Blue Ocean UI takes 20-30 min to load

2018-03-20 Thread Daniel Beck
> On 20. Mar 2018, at 10:06, Andrei Gheorghiu wrote: > > Does anyone know if this is something I can fix myself? The standard UI works > fine, but Blue Ocean takes close to 30 min to load the first page - after > that is loaded, browsing to others (same UI) works fine. > This didn't always hap

Re: Error: Invalid or corrupt jarfile jenkins.war

2018-03-20 Thread Meenal
Following is the hash: sha256sum jenkins.war 014f669f32bc6e925e926e260503670b32662f006799b133a031a70a794c8a14 *jenkins.war Thank you On Tuesday, March 20, 2018 at 5:45:02 PM UTC+5:30, Baptiste Mathus wrote: > > Well, seems like it's corrupted, as it says ? :) > > What is the version of this J

Re: Error: Invalid or corrupt jarfile jenkins.war

2018-03-20 Thread Baptiste Mathus
Well, seems like it's corrupted, as it says ? :) What is the version of this Jenkins war? What does "sha256 sum jenkins.war" output? Thank you 2018-03-20 13:11 GMT+01:00 Meenal : > Hello All, > > We are facing a following issue while we run the war file on nonstop > machine: > > java -jar jenk

Error: Invalid or corrupt jarfile jenkins.war

2018-03-20 Thread Meenal
Hello All, We are facing a following issue while we run the war file on nonstop machine: java -jar jenkins.war Error: Invalid or corrupt jarfile jenkins.war if we run with a following work around then we see an exception. $JAVA_HOME/bin/java -cp ./jenkins.war Main Exception is: java.io.IOExcep

Multiple git repositories in a pipeline?

2018-03-20 Thread antgel
Our application code is split across two Git repositories, web (.NET) and frontend (Angular). As part of our deploy process, we need to build both separately, then upload artifacts to servers etc. It's a while since I've been heavily involved in Jenkins, and I'm getting up to speed on features

Blue Ocean UI takes 20-30 min to load

2018-03-20 Thread Andrei Gheorghiu
Hi, Does anyone know if this is something I can fix myself? The standard UI works fine, but Blue Ocean takes close to 30 min to load the first page - after that is loaded, browsing to others (same UI) works fine. This didn't always happen, so perhaps there are some logs/builds I can cleanup? I