Re: Jenkins as a Windows service

2012-06-18 Thread blaz
So if I understand correctly you can access Jenkins web interface locally but not remotely?! Did you remember to open port 8088 on firewall? Does your Jenkins server listen for connections on all interfaces or just loopback interface? IE message "Internet Explorer cannot display the web page" is

Cannot get javascript to work in the Project description

2012-06-18 Thread Kamal Ahmed
Hi, I am using Jenkins ver. 1.470 on ubuntu, and Javascipt suddenly stopped working. Any workarounds ? or is this just me experiencing it Thanks, -Kamal.

Re: troubles with svn on jenkins slave

2012-06-18 Thread phil swenson
an upgrade to the svn plugin solved the prob On Mon, Jun 18, 2012 at 2:36 PM, phil swenson wrote: > I tried to bring my windows 2008 server slave online and get this in > the build console output: > > Caused by: java.lang.NoClassDefFoundError: Could not initialize class > hudson.scm.SubversionSCM

Re: Simple Execute Shell fails to execute, Jenkins reports success

2012-06-18 Thread Chris Mitchell
It looks like it was an issue with defaulting to using C Shell. I don't entirely understand why this worked, but specifying to use Bash resolved the issues. This is what my Execute Shell prompt looks like now and it executes great. #!/bin/sh -xe echo "Hello" > ~/tmp.txt Thanks for the help!

Re: Simple Execute Shell fails to execute, Jenkins reports success

2012-06-18 Thread Slide
Do you mean cat ~/tmp.txt? slide On Mon, Jun 18, 2012 at 2:23 PM, Chris Mitchell wrote: > This is the Console Output for the Execute Shell of "echo ~/tmp.txt".  Is > there any way to get more details about what exactly is going on? Any > debugging output possibly? > > Started by user auser > Bui

Re: Simple Execute Shell fails to execute, Jenkins reports success

2012-06-18 Thread Chris Mitchell
This is the Console Output for the Execute Shell of "echo ~/tmp.txt". Is there any way to get more details about what exactly is going on? Any debugging output possibly? Started by user auser Building remotely on node in workspace /u/auser/jenkins_bc/workspace/testing [testing] $ /bin/csh -xe /

Re: Simple Execute Shell fails to execute, Jenkins reports success

2012-06-18 Thread Andrew Melo
On Mon, Jun 18, 2012 at 4:05 PM, Chris Mitchell wrote: > I believe so.  When I log in via SSH using the same account which has been > configured for Jenkins and run the command, I get the desired output. Ah, but the environment for the slave is different than your interactive environment. Try doi

Re: Simple Execute Shell fails to execute, Jenkins reports success

2012-06-18 Thread Chris Mitchell
I believe so. When I log in via SSH using the same account which has been configured for Jenkins and run the command, I get the desired output. On Monday, June 18, 2012 2:42:09 PM UTC-6, LesMikesell wrote: > > On Mon, Jun 18, 2012 at 2:40 PM, Stanley, Jason > wrote: > > Silly question. > >

Re: Simple Execute Shell fails to execute, Jenkins reports success

2012-06-18 Thread Chris Mitchell
That's a perfectly reasonable question, I've made many mistakes like that before :) I am looking on the correct node, and I've tried with multiple nodes with the same results. On Monday, June 18, 2012 1:40:02 PM UTC-6, Stanley, Jason wrote: > > Silly question. > > > > Are you looking on the

Re: Simple Execute Shell fails to execute, Jenkins reports success

2012-06-18 Thread Les Mikesell
On Mon, Jun 18, 2012 at 2:40 PM, Stanley, Jason wrote: > Silly question. > > > > Are you looking on the correct node that ran the job for the tmp.txt file? Also, are you sure you know how ~/tmp.txt will expand when run under the jenkins slave? -- Les Mikesell lesmikes...@gmail.com

RE: EnvInject plugin doesn't set empty variable

2012-06-18 Thread Mandeville, Rob
That might be intentionally not supported. Jenkins is a class-platform product, and if some platforms don't allow environment variables with empty values, this could cause inconsistent behavior. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Grégo

Re: EnvInject plugin doesn't set empty variable

2012-06-18 Thread Grégory Boissinot
There is no way to do this feature into the EnvInject plugin for now. It is often considered as an issue to have empty values for environment variables. Which is exactly your use case? On Fri, Jun 15, 2012 at 1:12 PM, wrote: > I am using the EnvInject plugin, and my job has "Inject environment >

RE: Simple Execute Shell fails to execute, Jenkins reports success

2012-06-18 Thread Stanley, Jason
Silly question. Are you looking on the correct node that ran the job for the tmp.txt file? From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Chris Mitchell Sent: Monday, June 18, 2012 3:30 PM To: jenkinsci-users@googlegroups.com Subject: Re: Simple E

Re: Simple Execute Shell fails to execute, Jenkins reports success

2012-06-18 Thread Chris Mitchell
Hi Jason, I've tried that with no success. Permissions are not an issue. It appears it is not executing any of the shell command and claiming it does. If it was executing the shell script, I would expect the console log output to look something like this: Started by timer Building remotely o

RE: Simple Execute Shell fails to execute, Jenkins reports success

2012-06-18 Thread Stanley, Jason
Try running the echo command but define the actual path to the tmp.txt file. Example: echo "Hello" > /var/tmp/tmp.txt From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Chris Mitchell Sent: Monday, June 18, 2012 3:18 PM To: jenkinsci-users@googlegroups

Simple Execute Shell fails to execute, Jenkins reports success

2012-06-18 Thread Chris Mitchell
Hi, I am having getting Jenkins to communicate with the nodes. I am using Jenkins 1.466 on a linux machine. It is capable of logging in (notes from the web gui, as well as monitoring the connection via another SSH session), but when I try to execute the following shell script: echo "Hello" > ~

Re: Which container to use for Jenkins on production?

2012-06-18 Thread Nicky Ramone
Thank you, Les. On Mon, Jun 18, 2012 at 2:00 PM, Les Mikesell wrote: > On Mon, Jun 18, 2012 at 8:34 AM, Nicky Ramone wrote: > > > > We have been using Tomcat for some time now to deploy Jenkins. We will > > probably put this behind an Apache Httpd so that we can redirect from a > URL > > with n

RE: Restricting builds from running at certain times of the day

2012-06-18 Thread Mandeville, Rob
You are correct that this might need multiple slaves per host to do that. This isn’t a big deal to do, just make sure that they have different root directories. At my shop, where a build and test cycle takes up an entire Unix account, we have several slaves per host, each one on a different ac

Re: Invite and meeting (in danish): Short Jenkins intro meeting in the Copenhagen area, Denmark

2012-06-18 Thread R. Tyler Croy
On Mon, 18 Jun 2012, Bue Petersen wrote: > Just posting an invite below (in danish) if anyone might be interested. > Meeting and presentation will also be in danish... Would this be something good to post on the jenkins-ci.org blog? - R. Tyler Croy -- Cod

Re: Which container to use for Jenkins on production?

2012-06-18 Thread Les Mikesell
On Mon, Jun 18, 2012 at 8:34 AM, Nicky Ramone wrote: > > We have been using Tomcat for some time now to deploy Jenkins. We will > probably put this behind an Apache Httpd so that we can redirect from a URL > with no port. > Example: We would forward http://jenkins.ourinstance.com/ to > http://jenk

Re: Bullseye Coverage

2012-06-18 Thread Kohsuke Kawaguchi
The users list would be more appropriate for questions like this. I'm not the domain expert for bullseye coverage, but I wonder if you are running everything from a single shell (or else your environment variables you set won't be exposed to later separate invocations of the shell.) On 06/1

Re: Copy Artifact Plugin

2012-06-18 Thread lata
oops, sorry, i just discovered we can copy from workspace as well. On Monday, June 18, 2012 8:27:11 PM UTC+5:30, lata wrote: > > Alan, I'm trying to use this plugin to copy a tar.gz file from a nightly > build to a test job workspace. the .tar.gz in the nightly build is not an > archived artifac

Re: Jenkins as a Windows service

2012-06-18 Thread Slide
The web UI is THE way to interact with Jenkins, if the machine is not available, then there is no way to manage Jenkins remotely. The build server running Jenkins needs to be accessible. You could set it up such that only the Jenkins server is accessible and all builds are done on slaves within ano

Re: Jenkins - Defining users

2012-06-18 Thread Sara Silva
I think i solved it, doing this: Select: Jenkins's own user database Anyone can do anything then i go to the people and select the user, now the password field is available, defined it and then log in. But now i have another issue. I went to the VisualSVN Server and created a new user. I stop th

Re: Jenkins as a Windows service

2012-06-18 Thread louwho
As I mentioned in my previous posting, (using Internet Explorer), I could not connect. On Thursday, June 14, 2012 5:50:55 PM UTC-4, louwho wrote: > Is there (or should there be), a seperate forum\group\whatever for those > who have questions regarding Jenkins installed as a windows Service? Al

Re: Jenkins as a Windows service

2012-06-18 Thread Andrew Melo
On Mon, Jun 18, 2012 at 9:58 AM, louwho wrote: > On Windows server 'A', I have Jenkins installed as a windows Service, and I > have a few builds jobs created and scheduled.  Developers (in different > sites, on windows systems), check things into SVN, and will want to see that > their checkins hav

Re: Jenkins as a Windows service

2012-06-18 Thread louwho
On Windows server 'A', I have Jenkins installed as a windows Service, and I have a few builds jobs created and scheduled. Developers (in different sites, on windows systems), check things into SVN, and will want to see that their checkins have not broken the system, and\or, they might want to

Re: Copy Artifact Plugin

2012-06-18 Thread lata
Alan, I'm trying to use this plugin to copy a tar.gz file from a nightly build to a test job workspace. the .tar.gz in the nightly build is not an archived artifact, but it's available in the ws, with it's node online. It seems like i can't use the copy artifact unless it's archived, is that right?

Re: Jenkins as a Windows service

2012-06-18 Thread Slide
I'm not sure what you mean by "monitor" the web GUI allows you to control pretty much everything about Jenkins. What are you really trying to do? slide On Mon, Jun 18, 2012 at 7:34 AM, louwho wrote: > Is there no way to monitor Jenkins from another Windows system? > > On Thursday, June 14, 2012

Re: Jenkins as a Windows service

2012-06-18 Thread louwho
Is there no way to monitor Jenkins from another Windows system? On Thursday, June 14, 2012 5:50:55 PM UTC-4, louwho wrote: > Is there (or should there be), a seperate forum\group\whatever for those > who have questions regarding Jenkins installed as a windows Service? Also, > is there a plugin

Jenkins - Defining users

2012-06-18 Thread Sara Silva
Hello, i just installed jenkins in my pc. It is a Windows 7 and i used the *.exe file. Now i just run the msbuild using the targets: clean, init, compile, test and coverage. And i have a windows batch command for run fxCop. Now i want to configur security and users. I'm using VisualSVN Server t

Invite and meeting (in danish): Short Jenkins intro meeting in the Copenhagen area, Denmark

2012-06-18 Thread Bue Petersen
Just posting an invite below (in danish) if anyone might be interested. Meeting and presentation will also be in danish... Introduktion til Jenkins Continuous Integration Server Continuous Integration – er et princip der dikterer, at alle ændringer skal integreres, i det øjeblik de er skabt

Which container to use for Jenkins on production?

2012-06-18 Thread Nicky Ramone
Hi We have been using Tomcat for some time now to deploy Jenkins. We will probably put this behind an Apache Httpd so that we can redirect from a URL with no port. Example: We would forward http://jenkins.ourinstance.com/ to http://jenkins.ourinstance.com:8080/jenkins I was wondering if there are

CVS Bugfix

2012-06-18 Thread Knuplesch , Jürgen
Hello, i just upgraded Jenkins but found out that https://issues.jenkins-ci.org/browse/JENKINS-13789?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#issue-tabs is affecting me. The problem seems to be fixed, but not released. When will the Bugfix be released? Is

Re: Userbility on when starting build with parameters

2012-06-18 Thread Jesper Terkelsen
Thank you daniel this was really useful for me. I think this is enough for me to be able to send the user directly to the build now, and still get the user to read the documentation before starting the job. Best regards Jesper On Saturday, June 16, 2012 3:32:45 PM UTC+2, Daniel Beck wrote: >

Re: Jenkins-Eclipse-Plugin Available to download?

2012-06-18 Thread Manuel Doninger
On Mon, Jun 18, 2012 at 7:36 AM, Lakshmi wrote: > Hi, > > I am searching for an update site/zip to install an eclipse plugin for > Jenkins as available for Hudson. But I'm not able to find > > any for both Eclipse v3.6 & v3.7. I would like to know from which path I can > download the Jenkins eclip

Re: Jenkins-Eclipse-Plugin Available to download?

2012-06-18 Thread Jesse Farinacci
Greetings, On Mon, Jun 18, 2012 at 1:36 AM, Lakshmi wrote: > I am searching for an update site/zip to install an eclipse plugin for > Jenkins as available for Hudson. But I'm not able to find http://tasktop.com/connectors/hudson-jenkins.php -Jesse -- There are 10 types of people in this world

RE: Jenkins Jobs hangs at sending email

2012-06-18 Thread Alex Earl
I thought there was a separate setting for it let me look. Sent from my Windows Phone -- From: vprasad79 Sent: 6/17/2012 11:01 PM To: jenkinsci-users@googlegroups.com Cc: vprasad79 Subject: Re: Jenkins Jobs hangs at sending email Hello Slide, Please can I know how to

RE: Jenkins Jobs hangs at sending email

2012-06-18 Thread Alex Earl
This would be a change in the specific plugin that is trying to resolve, in this case either LDAP or Active Directory. Sent from my Windows Phone -- From: vprasad79 Sent: 6/17/2012 10:49 PM To: jenkinsci-users@googlegroups.com Cc: vprasad79 Subject: Re: Jenkins Jobs han

Re: Certification

2012-06-18 Thread Stevo Slavić
Hello Suri, It seems CloudBees offers training services (see http://www.cloudbees.com/training.cb ), but I don't see anything about certification (neither separate nor part of the training). I guess biggest certification one can get for Jenkins is to become active comitter or contributor to the p

Re: Set the job to be a flyweight task

2012-06-18 Thread Sebastian Sawicki
Hi, Let me explain it explain it more. There is one 'build scenario parametrized job: S(c); There are 3 matrix jobs: M1: with the axis c=C1, C2, C3. M2: c=C1, C3. M3: c=C2, C3. Cause *I would like to avoid copying the S job* each matrix is configured to run S with the parameter that points the act

Re: User Prompts

2012-06-18 Thread shanz
Chris, Yes I also do exactly that too. First job asks questions with parameters and populates a property file which envinject interrogates for each subsequent job. I found this simpler and less error prone than just relying on passing on the parameters to each job. I'll make do for now until I ca

Re: Set the job to be a flyweight task

2012-06-18 Thread Simon Wiest
Hi Sebastian, the 'parent' matrix builds are always fly-weight tasks. So you do not need to configure that explicitly. Only the individual 'child' matrix runs spawn by the matrix build (in your example: C1, C2, C2, ...) will take up an executor. By the way: matrix runs are executed in paral

Certification

2012-06-18 Thread Suri
Hi Can anyone suggest me, Whether any certification exam is available for Jenkins ? If yes, How to participate Jenkins Certification exam?