Re: Perforce Plugin

2013-09-19 Thread mark_kendzior
In the "Advanced" option for Perforce do you have the "Always Force Sync" checked? I also have the "Clean Workspace Before Each Build" checked with the full Wipe option. Not sure if that is necessary. We revert our build VM to a clean state before each build and out files sync fine with this

Re: Detect when a slave status changes from offline to online

2013-09-16 Thread mark_kendzior
Can you use the Jenkins CLI to launch the job when the machine starts up? Or possibly just the URL to the build job with the build parameter? A few more details on the process you are trying to follow may generate some other suggestions. Mark On Monday, September 16, 2013 7:11:26 AM UTC-6, Tâ

Re: Use of Jenkins environment variable in directory path

2013-08-29 Thread mark_kendzior
Have you tried to use ${GIT_BUILD_NUMBER} instead of %GIT_BUILD_NUMBER%? If you do a SET command in the second Batch command block do you see the GIT_BUILD_NUMBER set? Is it possible to run the commands you need to in the first block where GIT_BUILD_NUMBER appears to be working fine? Thanks Ma

Re: Setting up Jenkins with Perforce, need help

2013-07-17 Thread mark_kendzior
I may be able to help with the Perforce question, but not now to build VB. The workspace (client) field should just be a name that you want to use for the perforce workspace. It should not be a path. Because you have the boxes checked to let Jenkins create and manage the workspace it should au

Re: Jenkins Perforce plugin error: Perforce password (P4PASSWD) invalid or unset

2013-07-15 Thread mark_kendzior
We have been using the Perforce plugin for quite some time and usually when I see that error it is because the password is not correct. I am using a slightly older version of the plugin (1.3.19). You may try to check the box to expose the P4PASSWD in the environment and then check to see if it

Re: Auto Node startup?

2013-05-07 Thread mark_kendzior
You shouldn't have to manually start up the node. Jenkins will do it automatically. Have you tied the build job to the specific node in the "Restrict where build can run" box? I have seen it take a while before it will start up. There are also some setting in the Node config that control ho

Re: [Perforce Plugin] New to this - issues linking hudson with perforce

2013-03-20 Thread mark_kendzior
I know nothing about flash builder but a quick search shows there is a way to build from a command line http://help.adobe.com/en_US/Flex/4.0/UsingFlashBuilder/WSbde04e3d3e6474c4-59108b2e1215eb9d5e4-8000.html In your build job add a build step that will launch the command line build of Flash bui

Re: [Perforce Plugin] New to this - issues linking hudson with perforce

2013-03-18 Thread mark_kendzior
Those files are just information about the build. Have you looked in the workspace where your build should be running and generating the files that you are looking for? Have you looked in the build log to see if the files are being created or if there are build errors? Mark On Monday, March

Re: [Perforce Plugin] New to this - issues linking hudson with perforce

2013-03-13 Thread mark_kendzior
You shouldn't have to create the client in advance with the current configuration that is in your screen shot. If you have the "Let Jenkins Create Workspace" and "Let Jenkins Manage Workspace View" checked, the plugin will create the client for you. You do need to have a Workspace (client) na

Re: Setup Jenkins slave on another machine

2013-02-28 Thread mark_kendzior
This link may be useful: https://wiki.jenkins-ci.org/display/JENKINS/Distributed+builds Mark On Thursday, February 28, 2013 3:17:13 AM UTC-7, Madhu wrote: > > Hi All, > > I am trying to configure Jenkins. I configured one slave on my local > machine,I am able to run web driver scripts in master

Re: How to customize the workspace root directory in the slave node? e.g. d:\wp

2013-02-22 Thread mark_kendzior
If I am understanding your question correctly then you can achieve the desired results by 1. Change the 'Remote FS root' in the Node configuration to: d:\jenkinsslave 2. In the Build job go to the "Advanced Project Options" section and click the Advanced button. Set the "Use custom workspace" di

Re: Restarting/cleaning a slave VM after build?

2012-12-12 Thread mark_kendzior
This is what we have done to implement something similar to what you want to do. 1. Create a single script for each node/slave. It will take a parameter start or stop. These will exist on the master. 2. In the start section you will have all the commands you want to run on the VM. (We revert an

Re: Parameterized Perforce builds.

2012-11-12 Thread mark_kendzior
Rolf, I am doing something very similar to what you are trying to do. However it looks like you are running on Unix and I am running on Windows. This is what my setting are: Workspace: SCM_branch-${branch} Let Jenkins manage workspace is checked. Let Jenkins manage workspace view is checked. Clie

Re: Is it possible to parameterize a Subversion "Repository URL" location in a Jenkins build job configuration?

2012-04-25 Thread mark_kendzior
Linley, Yes, you can do exactly what you said. I am doing that exact thing. Add a String pramater to the build job. In my case I use branch as the parameter name. In the SVN URL put something like this: https://my-svn.com/branches/${branch} The SVN plugin will expand the ${branch} parameter fo