Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-31 Thread Erik de Bruin
Ok, the job on the Jenkins job (Window Azure) is nearly done... A single '-all' run takes around 9 hours to complete, so I've added a schedule that does 2 runs each day. I've started a '-all' run and added this list to the recipients of the failure emails. I expect there will be some in the days

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-31 Thread Alex Harui
Was there really a -u? Any idea what that was from? In mustella/test_changes.sh I have a test for a non-empty failures.txt that seems to be working for me. If failures.txt does not exist or is empty, -failures will run all tests. I suppose we should fix that, but in general -failures should not

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-31 Thread Erik de Bruin
I know little to nothing about the kung-fu of bash/sh, so I picked up this snippet from the interwebs (it's currently commented out in 'jenkins.sh' on the Azure instance: if [[ -s failures.txt ]] ; then echo Some tests failed: running '-failures' ./mini_run.sh -failures else echo All tests

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-31 Thread Alex Harui
Yeah, I'm no bash expert either. Each character seems to have importance. I looked at test_changes.sh and it only has one set of [] instead of two. Not sure if that would make a difference or not. if [ -s failures.txt ] ; then On 5/31/13 8:54 AM, Erik de Bruin e...@ixsoftware.nl wrote:

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-30 Thread Erik de Bruin
Wow! Thanks. This is so cool, I love teamwork :-) EdB On Thu, May 30, 2013 at 2:53 AM, OmPrakash Muppirala bigosma...@gmail.com wrote: I installed a slave on the machine by following instructions here: [1] The mustella test job is working fine now and all tests for components/Label pass.

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-29 Thread Erik de Bruin
Ok, I have Mustella running on Jenkins on Win2008... but the 'desktop_runner' can't seem to launch the Flash Player. Help? EdB On Tue, May 28, 2013 at 7:58 PM, Erik de Bruin e...@ixsoftware.nl wrote: On the Mac, using the MS RDP software, I just type the URL followed by a colon and the

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-29 Thread Alex Harui
Can you watch it run? A common issue is that the OS shows the this program is downloaded are you sure it is ok to run dialog after an FP install and mini_run will timeout waiting for someone to hit ok. On 5/29/13 3:55 AM, Erik de Bruin e...@ixsoftware.nl wrote: Ok, I have Mustella running on

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-29 Thread Erik de Bruin
It runs fine when I mini_run from the command line, just not when I mini_run from Jenkins. EdB On Wed, May 29, 2013 at 3:08 PM, Alex Harui aha...@adobe.com wrote: Can you watch it run? A common issue is that the OS shows the this program is downloaded are you sure it is ok to run dialog

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-29 Thread Alex Harui
Any error messages or other useful console output? On 5/29/13 6:39 AM, Erik de Bruin e...@ixsoftware.nl wrote: It runs fine when I mini_run from the command line, just not when I mini_run from Jenkins. EdB On Wed, May 29, 2013 at 3:08 PM, Alex Harui aha...@adobe.com wrote: Can you watch it

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-29 Thread Alex Harui
And I assume if you watch it, nothing shows up? Is it possible that Jenkins doesn't have privileges to run that executable? On 5/29/13 10:05 AM, Erik de Bruin e...@ixsoftware.nl wrote: Here is the Jenkins log for the job: log Started by user anonymous [EnvInject] - Loading node environment

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-29 Thread Erik de Bruin
Watching it indeed DOESN'T show the Flash Player popping up at all, unlike when you run from the command line. I don't know enough about administrating Jenkins or Windows Services to say something about the privileges each of these has, or what problems using them in combination might cause. If I

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-29 Thread Alex Harui
On 5/29/13 10:44 AM, Erik de Bruin e...@ixsoftware.nl wrote: Watching it indeed DOESN'T show the Flash Player popping up at all, unlike when you run from the command line. OK, not surprised. I don't know enough about administrating Jenkins or Windows Services to say something about the

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-29 Thread Alex Harui
The patch testing .sh files are working for me. I haven't announced the patch server yet as I am hoping to run it from behind the Adobe firewall, but SMTP access is blocked by the firewall and I am trying to get an exception. But the pieces are checked in. You will need to install fetchmail,

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-29 Thread OmPrakash Muppirala
On Wed, May 29, 2013 at 11:36 AM, Erik de Bruin e...@ixsoftware.nl wrote: My guess is that the 'anonymous' user mentioned is because I DIDN'T enable the security on Jenkins (it only listens to localhost), so I (ApacheFlex) am not logged in to Jenkins. But then again, maybe I'm wrong. I don't

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-29 Thread OmPrakash Muppirala
On Wed, May 29, 2013 at 3:30 PM, Alex Harui aha...@adobe.com wrote: On 5/29/13 3:24 PM, OmPrakash Muppirala bigosma...@gmail.com wrote: On Wed, May 29, 2013 at 11:36 AM, Erik de Bruin e...@ixsoftware.nl wrote: My guess is that the 'anonymous' user mentioned is because I DIDN'T enable

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-28 Thread OmPrakash Muppirala
On Mon, May 27, 2013 at 10:17 PM, Erik de Bruin e...@ixsoftware.nl wrote: Om, Thank you, I don't mind at all ;-) I won't have time to work on this today, so feel free to give it a try. EdB I tried getting in a few minutes ago. Someone kicked me out :-) Let me know when you are done?

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-28 Thread Erik de Bruin
I'm sorry, I wish there was a way to see if someone else is logged in already. I'm done... added the CYGWIN environment variable to Jenkins (not the job itself) and that got rid of the error message about the paths. But otherwise nothing changed and the run still fails. Next! ;-) EdB On Tue,

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-28 Thread Alex Harui
Might have been me trying to get in. However, I still have yet to make a connection. I've tried both Mac and Win. Ping was able to find flex-mustella.cloudapp.net. How are you guys specifying the port? I'll wait to try again until someone says they successfully got in. -Alex On 5/28/13

Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-27 Thread Erik de Bruin
Hi, Does anyone have any experience getting Unix scripts to run on Win2008 with Cygwin from a Jenkins job? I'm trying to get Mustella to run as a Jenkins job so we can schedule it to run once or twice a day and report back via email. Seemed easy enough, but reality turned out to be a bit

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-27 Thread Roger Whitcomb
Do you just need to tell Jenkins to set CYGWIN=nodosfilewarning in the spawned environment? I don't see any other error than that warning, which you can turn off this way. HTH, ~Roger Whitcomb Sent from my iPhone On May 27, 2013, at 9:51 AM, Erik de Bruin e...@ixsoftware.nl wrote: Hi,

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-27 Thread OmPrakash Muppirala
Do you mind if I log in to the machine and see what's happening? Thanks, Om On May 27, 2013 9:52 AM, Erik de Bruin e...@ixsoftware.nl wrote: Hi, Does anyone have any experience getting Unix scripts to run on Win2008 with Cygwin from a Jenkins job? I'm trying to get Mustella to run as a

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-27 Thread OmPrakash Muppirala
I assumed you were sleeping and took a look. There is a Mustella run going on and I dint want to disturb it. I will take a look at it in a few hours in case you havent fixed it by then. Thanks, Om On Mon, May 27, 2013 at 12:41 PM, OmPrakash Muppirala bigosma...@gmail.comwrote: Do you mind if

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-27 Thread Erik de Bruin
Om, Thank you, I don't mind at all ;-) I won't have time to work on this today, so feel free to give it a try. EdB On Tue, May 28, 2013 at 2:53 AM, OmPrakash Muppirala bigosma...@gmail.com wrote: I assumed you were sleeping and took a look. There is a Mustella run going on and I dint want

Re: Stuck getting Jenkins to run Mustella on Win2008 Server

2013-05-27 Thread Erik de Bruin
Thanks, Roger. We'll give it a try. EdB On Mon, May 27, 2013 at 7:24 PM, Roger Whitcomb rogerandb...@rbwhitcomb.com wrote: Do you just need to tell Jenkins to set CYGWIN=nodosfilewarning in the spawned environment? I don't see any other error than that warning, which you can turn off