Disable Bitbucket Project automatic Run

2020-05-19 Thread Kenneth Mroz
Hello, Is there a way to disable auto scan/run of new branches that get discovered on a multi branch pipeline. I am using the bitbucket project in Jenkins which is based off of Multi-brach pipeline. i want to enable this for current repos but dont want it to run the code for reach new repo/bran

Branch specific pipelines in Declarative Pipelines

2017-07-07 Thread Kenneth Brooks
As a user, I would like to run different pipelines depending on what branch my commit happens on. In Declarative Pipelines there is support for doing conditional stages, however, using this conditional logic has 2 issues: - You cannot re-order stages based on the branches - It makes the p

pipeline script : Job Weight

2017-05-15 Thread Kenneth Johansson
We have been using the heavy job plugin and configured the nodes so that they have as many executors as cpus. There we could set in the job the job weight to as many cpus the job really used. But we shifted over to using pipeline and groovy script and now that parameter is not possible to set

Re: test for variables

2017-04-28 Thread kenneth johansson
On 2017-04-28 13:38, Kenneth Johansson wrote: I want to test if a property on a job exist att all. and then do something depening on if it true or false. if the property exist there is no issue testing if its true or false but I do not want to force the job to have to create the property so I

test for variables

2017-04-28 Thread Kenneth Johansson
I want to test if a property on a job exist att all. and then do something depening on if it true or false. if the property exist there is no issue testing if its true or false but I do not want to force the job to have to create the property so I want to test if the variable exist and that fa

Re: groovy commands and description.

2017-04-28 Thread Kenneth Johansson
On 2017-04-27 17:52, Mark Waite wrote: On Thu, Apr 27, 2017 at 9:36 AM Kenneth Johansson mailto:kenneth.johans...@inteno.se>> wrote: On 2017-04-27 17:22, Mark Waite wrote: Refer to https://jenkins.io/doc/pipeline/steps/workflow-durable-task-step/#code-sh-code-shell-scrip

Re: groovy commands and description.

2017-04-27 Thread Kenneth Johansson
Apr 27, 2017 at 9:16 AM Kenneth Johansson mailto:kenneth.johans...@inteno.se>> wrote: How do I find out what functions exist that can be used from a groovy script and how to use them ?? like how to get the shell script output from a shell command into a variable. so

groovy commands and description.

2017-04-27 Thread Kenneth Johansson
How do I find out what functions exist that can be used from a groovy script and how to use them ?? like how to get the shell script output from a shell command into a variable. so the sh command is in basically all examples written as "sh 'command'" but there is another way also so that it

Re: pipeline: parameters documentation.

2017-04-26 Thread Kenneth Johansson
On 2017-04-26 16:14, Björn Pedersen wrote: Am Mittwoch, 26. April 2017 14:43:39 UTC+2 schrieb Kenneth Johansson: hmm I'm starting to question the usefulness of the pipeline system. Its very hard to understand how to do even very basic stuff. Even something as easy as fi

pipeline: parameters documentation.

2017-04-26 Thread Kenneth Johansson
hmm I'm starting to question the usefulness of the pipeline system. Its very hard to understand how to do even very basic stuff. Even something as easy as finding out what type of parameters I can use is hard. The documentation on https://jenkins.io/doc/book/pipeline/syntax/ only mention str

Re: pipeline: script location

2017-04-26 Thread Kenneth Johansson
the basic configuration step. On Wed, Apr 26, 2017 at 5:01 AM Kenneth Johansson mailto:kenneth.johans...@inteno.se>> wrote: So I have a pipeline job that is using the "pipeline script from SCM" as suggested in the documentation. But for developing code this

pipeline: script location

2017-04-26 Thread Kenneth Johansson
So I have a pipeline job that is using the "pipeline script from SCM" as suggested in the documentation. But for developing code this is really really annoying as I now need to checking every single change even if its just to test something out and for a new user its going to be quite a lot of

pipeline: parameters

2017-04-26 Thread Kenneth Johansson
What I want is to have the configuration and build instruction in the actual project repo and to do that it looked like I should do a pipeline project. But the documentation is not very easy to follow. So my first problem is how to generate the built parameters dynamically. I made a simple tes

Re: Declarative Syntax: agent scope

2017-04-14 Thread Kenneth Brooks
x27;m trying to find a way that post can run w/o being on a node. I'm also trying to find a way to have multiple steps run inside a stage but on different nodes. On Wednesday, April 12, 2017 at 4:08:39 PM UTC-4, Kenneth Brooks wrote: > > When I specify an agent inside a stage, it then

Re: Declarative pipelines per branch and reusable stages (keeping it DRY)

2017-04-13 Thread Kenneth Brooks
simply call that method from with each > pipeline. > > 3. You can define your steps in a configuration file as a property or yaml > and load those files using the Pipeline utility steps plugin. > https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Utility+Steps+Plugin >

Re: Declarative pipelines per branch and reusable stages (keeping it DRY)

2017-04-13 Thread Kenneth Brooks
Created a bug for it with evidence and jenkins plugin info: https://issues.jenkins-ci.org/browse/JENKINS-43576 On Wednesday, April 12, 2017 at 6:48:06 PM UTC-4, Kenneth Brooks wrote: > > Quickly trying out your suggestion of pipeline directly inside the if. It > sees the stages, but

Re: Declarative pipelines per branch and reusable stages (keeping it DRY)

2017-04-12 Thread Kenneth Brooks
hose files using the Pipeline utility steps plugin. > https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Utility+Steps+Plugin > > To sum up, I think having different stages is worth discussing (it is not > going to be implemented in the short term) but there are already many > e

Re: Declarative pipelines per branch and reusable stages (keeping it DRY)

2017-04-12 Thread Kenneth Brooks
and simply call that method from with each > pipeline. > > 3. You can define your steps in a configuration file as a property or yaml > and load those files using the Pipeline utility steps plugin. > https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Utility+Steps+Plugin > &

Re: Declarative Syntax: ability to run multiple stages inside a single agent

2017-04-12 Thread Kenneth Brooks
eploy-utility-1.0') { // do some deployment using our homegrown deployment binaries on this node } } -k On Wednesday, April 12, 2017 at 4:25:51 PM UTC-4, Andrew Bayer wrote: > > Are you wanting to use the same node for most, if not all, of the > pipeline? If so, just use the

Declarative Syntax: ability to run multiple stages inside a single agent

2017-04-12 Thread Kenneth Brooks
As a user, I want to run multiple stages inside a single agent. Today we use the mesos plugin and spin up and spin down an agent on demand. I want to have 3 stages all run on that same agent before it spins down. That way all stages can leverage that workspace before it is trashed. Current abili

Declarative Syntax: agent scope

2017-04-12 Thread Kenneth Brooks
When I specify an agent inside a stage, it then also applies to everything in the 'post' section. I'm not sure that is alway the behavior I want. Is there a way around this? Specifically, we have the ability to take a checkpoint (similar to the enterprise edition checkpoint feature) but that s

Declarative pipelines per branch and reusable stages (keeping it DRY)

2017-04-11 Thread Kenneth Brooks
TL;DR up front: *As a user, I want to have a pipeline that performs specific pipeline stages based on the branch. Recommendation: Put the when{} condition outside the pipeline{} tag.* *As a user, I want to declare my stages but have the implementation be separate so that I can reuse them in mult

SVN Plugin - case sensitivity on tags, branches and trunk

2017-03-20 Thread Kenneth Guardanapo
Our projects have been built with the folders under the project named Tags, Trunk and Branches. When I create a parameterized project and try to build using it, it only shows those names in the dropdown. I am unable to see anything under the folders. If I rename them to tags, trunk and branch

Best Practices for Pipeline Global Function Args (Maps vs Closures)

2016-09-19 Thread Kenneth Baltrinic
Trying to get my head around what is the best way to implement some custom pipeline DLS commands using global functions . I am looking at the examples given under Defining a more structured DSL

Support for virtualenvs in Ansible plugin

2016-09-09 Thread Kenneth Koski
This might be a feature request, if so pointers on how to request it would be helpful. I'd like to run an Ansible playbook from within Jenkins pipeline. It looks like the ansiblePlaybook plugin allows an installation parameter to be passed, but this must be set up globally. Is there any way to

C# .NET with jenkins v 2.5 how?

2016-05-19 Thread Kenneth Nielsen
Kenneth -- 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 discussion on the web vi

Jenkins P4 plugin problem

2016-01-20 Thread Kenneth Nielsen
Hi gurus I am trying to introduce Jenkins at my workplace. We use Perforce as version control. I have installed the p4 plugin. My job currently only tries to get the files, and it fails: It appears that I cannot login to the version control. I cannot find where to put the server name for the p

Re: Auto-generating a complex view setup

2015-10-26 Thread Kenneth Younger
I ran into this same problem, and stumbled onto a solution. You have to include the "view {}" block inside the each. I'm not a groovy expert, so I can't say why this works exactly, but it does prevent it from generating entirely separate nestedview definitions. https://gist.github.com/kyounger/

Job Parameters No Longer Displayed for Queued Builds?

2015-07-29 Thread Kenneth Baltrinic
Greetings, We recently upgraded our Jenkins infrastructure from v 1.552 to 1.609.1. For the most part everything went smoothly. Kudos to the Jenkins team for that. One issue that has presented itself however is this: Previously, when multiple instances of a job are queued, waiting to run,

[workflow plugin] CPS groovy member declaration bug in intended behavior?

2015-02-08 Thread Kenneth Baltrinic
I have the following script in by global cps library. Cookbook.groovy: package chef Throwable exception = null boolean validate() { validated = false try { sh 'validate' validated = true } catch (Throwable ex) { exception = ex } return (boolean)val

[workflow plugin] Access current "build" instance from within script?

2015-02-05 Thread Kenneth Baltrinic
I am just reposting with a new subject since I did not notice the [workflow plugin] convention previously. Hoping this will get the right peoples eyes on the problem. On Wednesday, February 4, 2015 at 2:59:02 PM UTC-5, Kenneth Baltrinic wrote: > > I feel like I have read how to d

Re: Access current "build" instance from within Workflow Script?

2015-02-05 Thread Kenneth Baltrinic
Wednesday, February 4, 2015 at 3:01:17 PM UTC-5, slide wrote: > > Doesn't workflow support using Mailer directly? I thought there was a way > to use Mailer in the workflow. > > On Wed Feb 04 2015 at 12:59:05 PM Kenneth Baltrinic > wrote: > >> I feel like I have read

Access current "build" instance from within Workflow Script?

2015-02-04 Thread Kenneth Baltrinic
I feel like I have read how to do this somewhere already but now that I need it I can't find it. I am trying to duplication the behavior of the mailer within a workflow script. Namely if the build failed send an e-mail. If it succeed but the previous build failed, send a different email. In

Re: 500 Error invoking git-hook with Workflow plugin?

2015-02-03 Thread Kenneth Baltrinic
ks are broken until all workflow job have been run once since the restart. On Tuesday, February 3, 2015 at 10:03:50 AM UTC-5, Kenneth Baltrinic wrote: > > This is with Jenkins v 1.598 and Git plugin v 2.3.4. When I invoke the > https://jenkins-01.mydomain.com/git/notifyCommit url with

Re: Using git hook with Workflow Plugin with 'computed' repository url?

2015-02-03 Thread Kenneth Baltrinic
? On Tuesday, February 3, 2015 at 12:04:01 PM UTC-5, Kenneth Baltrinic wrote: > > We are using a function in our cps global library to perform our git > fetch. This function looks something like: > > def getFromStash(stashProject, stashRepo) { > checkout changelog: tru

Using git hook with Workflow Plugin with 'computed' repository url?

2015-02-03 Thread Kenneth Baltrinic
We are using a function in our cps global library to perform our git fetch. This function looks something like: def getFromStash(stashProject, stashRepo) { checkout changelog: true, poll: true, scm: [ $class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmodu

Re: 500 Error invoking git-hook with Workflow plugin?

2015-02-03 Thread Kenneth Baltrinic
I still do not know the root cause of this, however, deleting and recreating all of the workflow projects on the server solved the problem. Fortunately it was a new server with just three jobs. On Tuesday, February 3, 2015 at 10:03:50 AM UTC-5, Kenneth Baltrinic wrote: > > This is with J

500 Error invoking git-hook with Workflow plugin?

2015-02-03 Thread Kenneth Baltrinic
This is with Jenkins v 1.598 and Git plugin v 2.3.4. When I invoke the https://jenkins-01.mydomain.com/git/notifyCommit url with an appropriate ?url argument, either via get or post, I am getting a 500 error with the following stack trace. Yesterday I was able to "successfully" invoke this ur

Re: Automating Jenkins Deployments with Chef

2015-01-27 Thread Kenneth Baltrinic
g an xml template as the solution. In the latter case, I have not go there yet as there does seem to be hope of getting the API to work. (fingers crossed). --Ken On Monday, January 12, 2015 at 7:46:06 AM UTC-5, Kenneth Baltrinic wrote: > > I am working on creating a chef cookbook

Create UserPrivateKeySource Credential via Groovy?

2015-01-27 Thread Kenneth Baltrinic
Its me again--still trying to configure Jenkins via Chef. In this case I have extracted from the opscode Jenkins cookbook their script for creating ssh credentials and have attempted to modify it to create a credential from a UserPrivateKeySource instead of the DirectEntryPrivateKeySource that

Automating Jenkins Deployments with Chef

2015-01-12 Thread Kenneth Baltrinic
I am working on creating a chef cookbook to automate our Jenkins infrastructure. I am using the opscode Jenkins cookbook as my starting point but it only has a few basic resources. I can see I am going to need use the cookbook's jenkins_script resource to configure Jenkins via groovy. That w

How to configure Maven Installation via Groovy

2015-01-08 Thread Kenneth Baltrinic
I am trying to build a chef recipe to deploy/manage our Jenkins instances. Things are going reasonably well but the ops-code Jenkin cookbook only provides some basic configuration recipes. It does give you a resource by which to run groovy scripts though and with that and the help of a few blo

Re: Groovy collection.find() returning boolean in Workflow scripts?!

2015-01-06 Thread Kenneth Baltrinic
Opened JENKINS-26307 <https://issues.jenkins-ci.org/browse/JENKINS-26307> for this. On Tuesday, January 6, 2015 5:19:11 AM UTC-5, Thomas Goeppel wrote: > > Kenneth, > > CPS doesn't always behave like a Groovy programmer would expect. > Obviously, there is a price to pa

Groovy collection.find() returning boolean in Workflow scripts?!

2015-01-05 Thread Kenneth Baltrinic
I am trying to do a very simple file parse operation within a Jenkins workflow script and getting some very bizarre results. This is with the workflow 1.1 set of plugins and Jenkins 1.596. To demonstrate the issue I created a new workflow job with the following script: *def str="1:one|

Re: Grape support in Worflow Plugin and JAR support in cps-global-lib?

2014-12-22 Thread Kenneth Baltrinic
eir own plugins. So, if no such request exists > yet, just file a new issue against `workflow-plugin` on that site. > > For reference: > https://wiki.jenkins-ci.org/display/JENKINS/How+to+report+an+issue#Howtoreportanissue-Beforerequestinganimprovementorfeature > > >

Grape support in Worflow Plugin and JAR support in cps-global-lib?

2014-12-20 Thread Kenneth Baltrinic
I am not sure if this is the right place to put feature requests but I have two closely related ones. The first is to implement support for grape in the workflow plug-in so that external groovy libraries like http-builder can be @grab-ed. Perhaps implementing grape support would obviate the ne

Re: Failed to serialize org.jenkinsci.plugins.workflow.actions.ErrorAction when declaring classes in csp-global-lib

2014-12-20 Thread Kenneth Baltrinic
Kahsuke, The fast turnaround on the fix is much appreciated. Jesse, Thanks for pursuing this even further. I sat this aside to work on some other aspects of the project and oddly enough, just before checking back in on this thread this evening, I ran smack into the method not available problem

Re: fatal: repository 'http://jenkins:8080/jenkins/workflowLibs.git/' not found

2014-12-17 Thread Kenneth Baltrinic
I am slaying other dragons right now but will circle back and investigate the possibility at some point. Good tip though. Thanks. On Monday, December 15, 2014 9:55:01 AM UTC-5, Mark Waite wrote: > > > > On Mon, Dec 15, 2014 at 7:48 AM, Kenneth Baltrinic > wrote: >> >&g

Failed to serialize org.jenkinsci.plugins.workflow.actions.ErrorAction when declaring classes in csp-global-lib

2014-12-15 Thread Kenneth Baltrinic
I have a basic workflow script that is performing some validation on a chef cookbook before publishing it.Most of the script code is in the csp-global-lib library because I am ultimately going to be validating a lot of cookbooks. my workflow-lib repo looks like this: src +- chef +- Co

Re: fatal: repository 'http://jenkins:8080/jenkins/workflowLibs.git/' not found

2014-12-15 Thread Kenneth Baltrinic
me such. Anyway the initial issue is resolved. I'll look into the empty-repo business later. On Friday, December 12, 2014 2:08:51 PM UTC-5, Kenneth Baltrinic wrote: > > I feel I am missing something obvious here. I have a test bed Jenkins > server v 1.592 with workflow 1.0 plug

Re: fatal: repository 'http://jenkins:8080/jenkins/workflowLibs.git/' not found

2014-12-15 Thread Kenneth Baltrinic
Is there anyone out there successfully using the Global Shared Library? On Friday, December 12, 2014 2:08:51 PM UTC-5, Kenneth Baltrinic wrote: > > I feel I am missing something obvious here. I have a test bed Jenkins > server v 1.592 with workflow 1.0 plugins installed, this inc

fatal: repository 'http://jenkins:8080/jenkins/workflowLibs.git/' not found

2014-12-12 Thread Kenneth Baltrinic
I feel I am missing something obvious here. I have a test bed Jenkins server v 1.592 with workflow 1.0 plugins installed, this includes the Workflow: Global Shared Library for CPS workflow plugin. All the workflow plugins are installed and enabled. Given that, attempting to do *git clone htt

Re: Best way to re-configure Jobs on-the-fly

2014-12-03 Thread Kenneth Baltrinic
I want to thank everyone for their input. At this time we have decided to pursue the workflow plug-in and its "load" step as the best way forward. Given that we are dealing with trying to configure complex build flows, the workflow plugins other features should prove useful well beyond the sc

Re: Best way to re-configure Jobs on-the-fly

2014-12-02 Thread Kenneth Baltrinic
onnolly wrote: > > Your effort might be best placed helping us beef up the (stub) > > travis.yaml parser to one that is more useable. > > > > On Tuesday, December 2, 2014, James Nord > > <mailto:te...@teilo.net >> wrote: > > > > Hi > &g

Best way to re-configure Jobs on-the-fly

2014-12-02 Thread Kenneth Baltrinic
I have been tasked to look at how we can set up a self service CI system for a large development shop, much along the lines of how travis CI works. There are big differences between what we need and what Travis CI provides but the basic idea of having a yaml file within the repository itself s

Re: Guidance on templating

2014-03-28 Thread Kenneth Dick
The SCM plugins can take job parameters as part of the SCM location. You could pass the SCM location details with a job parameter and hard code to use that parameter. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this g

Jenkins losing project relationship

2014-03-28 Thread Kenneth Dick
Hello all, I've learned a ton from this google group and now I think I've run into something new. Background: We have created 15 deployment pipelines for applications in our platform to deploy into a Dev integration environment and a QA environment using a single deploy job for each destination

Stack trace on Jenkins page load as unauthenticated user.

2013-12-13 Thread Kenneth Gillen
Hi, Thanks for reading. We have a Jenkins install which produces a stack trace every time when an unauthenticated user browses the main page. Anyone recognise / any ideas? Our Jenkins was migrated from an older Hudson install if that's relevant. Stack trace javax.servlet.ServletException:

Re: build hangs on slave

2013-09-16 Thread Kenneth Westelinck
e job. > The build which suppose to take 40 mins for successful execution, is > running more than 2 hrs and still running. > > > On Wednesday, February 8, 2012 3:26:15 PM UTC+5:30, Kenneth Westelinck > wrote: >> >> Sorry, forgot to mention, this is running the latest a

Jenkins empties folders sometimes?? - why

2013-03-08 Thread Kenneth Nielsen
r any tips Kenneth -- 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. For more options, visit https://gr

Re: how to trigger one job if two other succeeds?

2013-02-22 Thread Kenneth Nielsen
> > I believe that is the case. Otherwise there is no point to mention second > build if we do not care if it builds or fails. > > > > On 22 February 2013 09:24, Kenneth Nielsen > > wrote: > >> But will that only trigger if both are succesfull? >> >> Den f

Re: how to trigger one job if two other succeeds?

2013-02-22 Thread Kenneth Nielsen
But will that only trigger if both are succesfull? Den fredag den 22. februar 2013 09.16.57 UTC+1 skrev Peter Miklosko: > > Build Trigger for Build after other projects are built just add name of > both project separated by comma and you done. > > Peter > > On 22 Februar

how to trigger one job if two other succeeds?

2013-02-21 Thread Kenneth Nielsen
&& Job2 would be nice. Kenneth -- 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. For more op

fails checkuot /update from subversion

2013-02-10 Thread Kenneth Nielsen
Hi all, Jenkins fails when checking out / updating to head subversion, it used to work nicely. Can anyone give me a clue about why this happens? ERROR: Failed to check out svn://freebee.capres.local/microrsp/trunkorg.tmatesoft.svn.core.SVNException

how to ensure a job executes on all slaves.

2013-02-05 Thread Kenneth Nielsen
Hi all, We have just upgraded some 3rd party libraries we use. I would like a Jenkins job to pull them from subversion onto all our windows build slaves. I have them grouped under a label. thanks kenneth -- You received this message because you are subscribed to the Google Groups "Je

Todo notes on a jekinsjob - any add-ins?

2013-01-24 Thread Kenneth Nielsen
Hi all, I am in the process of setting up Jenkins on our system. And want to stick a note on the different jobs, can that be done in a smart way? I want the note to be for each job, but not necessarily stored and published as it would be if i put it in a jobs description. thanks kenneth

Re: Copy Artifact from other job fails

2012-12-18 Thread Kenneth Nielsen
I mean how to get the assembly in place, now I 'only' need to compile project b successfully. Den tirsdag den 18. december 2012 16.46.55 UTC+1 skrev Kenneth Nielsen: > > figured it out my self. ;-) > > Den tirsdag den 18. december 2012 16.37.47 UTC+1 skrev Kenneth Nielsen:

Re: Copy Artifact from other job fails

2012-12-18 Thread Kenneth Nielsen
figured it out my self. ;-) Den tirsdag den 18. december 2012 16.37.47 UTC+1 skrev Kenneth Nielsen: > > Hi all, > > I have a job building a C# assembly named 'a.dll', when I succeed with the > build, I have Archive the artifacts a.dll and a.pdb for use in another job

Copy Artifact from other job fails

2012-12-18 Thread Kenneth Nielsen
n compile (the release build) Any clues why? Should I use the fingerprint plugin to get it to work ? and why? thanks Kenneth

Copy Artifacts on slave fails

2012-12-16 Thread Kenneth Nielsen
Hi All, I have to jobs running on the same slave. they build a C# dll and exe. job 1: - get latest from svn - build - archive artifacts. - trigger job 2 On the first job, after building the dll, I archive the artifacts it has build "src/MicroRSP/Release/XYZ.Shared.*" On the jobs p

Re: How to handle project dependencies?

2012-10-08 Thread Kenneth
feature for > triggering dependency jobs. I've manually set them up. > > On Mon, Oct 8, 2012 at 12:33 AM, Kenneth > > wrote: > >> I'm trying to setup jenkins to monitor a solution with C++ and C# in >> multiple solutions, but in one repository. >> (VS

How to handle project dependencies?

2012-10-07 Thread Kenneth
I'm trying to setup jenkins to monitor a solution with C++ and C# in multiple solutions, but in one repository. (VS 2005 and .NET 2.0) How should I configure jenkins to build and test it? my suggested alternatives are: a) one job for each solution? - rather large jobs b) one job for each proje

Re: how to handle C# project dependencies

2012-10-07 Thread Kenneth
d by Jenkins (with all arguments) and launch this command in > shell for trying to debug it. > However according the log, 'LimeUtilities' project is missing. It is a > layout issue. Do you have it in your workspace? > > On Fri, Oct 5, 2012 at 10:04 AM, Kenneth > >

how to handle C# project dependencies

2012-10-05 Thread Kenneth
Hi All I've got one job building a dll, that uses a dll that i have stored as an artifact, and gotten into the outputfolder for that job. It still complains about the dependency when compiling though. how should i workaround that? C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Commo

Re: AUTO: Andreas Schilling/Twt-Gmbh is out of the office. (Rückkehr am 18.10.2012)

2012-09-30 Thread Kenneth
I was wondering where he were... ;-) Den mandag den 1. oktober 2012 03.54.57 UTC+2 skrev Andreas Schilling: > Ich kehre zurück am 18.10.2012. > > Bitte wenden Sie sich in dringenden Fällen an Dr. Johannes Mezger > (johannes[dot]mezger[at]twt-gmbh[dot]de) oder telefonisch an das TWT > Sekretari

how to manage project dependencies with jenkins?

2012-09-23 Thread Kenneth
Hi All, I have a fairly large solution, with multiple projects within it, (On Windows, with C++ and C#) and am struggeling with how to build them in jenkins. Basically I want a job for each project in my visual studio solution, but am having trouble with succeeding to have jenkins do that.

Re: Structuring builds for a large project

2012-09-23 Thread Kenneth
Hi Kayode, please let me know how you progress. I am facing a similar challange and have not figured out how to get it to run. my problem is projects that use other projects, in C++ terms link. thanks Kenneth On Saturday, September 22, 2012 1:42:31 PM UTC+2, Kayode Odeyemi wrote: > He

Re: how to handle C# project dependencies

2012-09-21 Thread Kenneth
LimeCommandTests.cs(2,7): error CS0246: The type or namespace name 'LimeUtilities' could not be found (are you missing a using directive or an assembly reference?) On Friday, September 21, 2012 10:29:15 AM UTC+2, Kenneth wrote: > I get this error message when jenkins bui

how to handle C# project dependencies

2012-09-21 Thread Kenneth
I get this error message when jenkins build c# projects that depend on c# dll, that I've made in another job. In visual studio I've made the project refer the other project, to make it behave in release and debug builds. but it causes jenkins to fail... ... Target ResolveProjectReferences: C:\

Re: Hov to handle project interdenpendencies with jenkins?

2012-09-19 Thread Kenneth
It appears that I can do this by copying some artifacts. Den torsdag den 20. september 2012 06.53.51 UTC+2 skrev Kenneth: > I want to use Jenkins to build projects, that are used by other projects. > How should it be done? > Should I use a matrix build? > > I would prefer

Hov to handle project interdenpendencies with jenkins?

2012-09-19 Thread Kenneth
I want to use Jenkins to build projects, that are used by other projects. How should it be done? Should I use a matrix build? I would prefer small jobs that only build one project, and then can trigger others, if they are using it. - I can easily trigger the build between jobs, but how should

C#/ C++ builds on windows

2012-09-18 Thread Kenneth
Hi all, is there a Jenkins strategy about where should I place the binary results? so I can reuse them in other jobs? ( I want to make may small jobs, one for each project, and have dependend projects build and use the results of other jobs ) thanks

how to build depending projects?

2012-09-07 Thread Kenneth
in visual studio .net i have a solution that contains information about the build order, and how the projects refer each other. In Jenkins I have made a job for each project in the solution, so I need to put the project refered how can i specify in visual studio or jenkins that i need this C# p

Re: how to handle build dependencies?

2012-09-06 Thread Kenneth
different, and i need to make sure the compiled dll, is in the path, so it will 'link' correctly in jenkins builds... how should i fix that ? On Thursday, September 6, 2012 9:15:38 PM UTC+2, Kenneth wrote: > I am quite new to Jenkins, and am faling in love ;-) (with him sound wrong

how to handle build dependencies?

2012-09-06 Thread Kenneth
27;s (I am using microsoft VC++ and C# and have subversion as my scm) Any tips anyone? thanks Kenneth

Re: problem installing plug-ins on windows pc

2012-09-06 Thread Kenneth
fn On Saturday, September 1, 2012 11:57:27 PM UTC+2, Kenneth wrote: > Hi all, > I am trying to get Jenkins to work, and I keep getting blocked by not > being able to download and install plugin files. > Has anyone a solution for this? > it might be a setting in internet explorer or something. > > kfn >

Re: problem installing plug-ins on windows pc

2012-09-01 Thread Kenneth
ins on > Windows on several systems with no problems, so it is most likely a > configuration issue. > > Sent from my Windows Phone > ------ > From: Kenneth > Sent: 9/1/2012 2:57 PM > To: jenkins...@googlegroups.com > Subject: problem installing plug-

problem installing plug-ins on windows pc

2012-09-01 Thread Kenneth
Hi all, I am trying to get Jenkins to work, and I keep getting blocked by not being able to download and install plugin files. Has anyone a solution for this? it might be a setting in internet explorer or something. kfn

How do I setup Jenkins to handle multiple projects that depends on each other..?

2012-08-31 Thread Kenneth
referncing in myexe. When running under Jenkins? Thanks Kenneth

how to handle project dependencies

2012-08-30 Thread Kenneth
jects.) How do I make ndoc run on the xml exported in the builds. ( and make a help file for visual studio, that other developers can use. ) thanks Kenneth

msbuild how to specify a project to build in a solution?

2012-08-22 Thread Kenneth
Does anyone know?

What is the name of the 'todo' plugin?

2012-08-22 Thread Kenneth
That afte compilation runs through source code and can find todo, and other comments that needs to be addressed? thanks Kenneth

Building C# project with msbuild

2012-08-17 Thread Kenneth
, they are nuit based. Thanks for any help Kenneth

cannot install msbuild plugin...

2012-08-15 Thread Kenneth
there be a hackers way to get jenskins to reconice the plugin, if i manually can down load it from somewhere kenneth

Re: Windows installation - cannot be configured - jobs page loading shown

2012-08-14 Thread Kenneth
Hi Sami, I'm running with the newest Jenkins , ie. version 1.477. But the problem only seems to appear on my WM_ware setup on a virtual mashine. -Kenneth On Tuesday, August 14, 2012 6:49:27 PM UTC+2, sti wrote: > Which version of Jenkins you are running? > > -- Sami > >

Windows installation - cannot be configured - jobs page loading shown

2012-08-14 Thread Kenneth
Hi Guru's I'v jeg trying to konfigure my jenkins to have a job monitoring three of several projects checked into subversion. and build it with ms build. (using .net 2.0 & c#) after that I would like to run NUnit test on a project. But when I try to configure the job, the top of the page is graye

Re: FW: [hudson-dev] Error building‎

2012-07-31 Thread Kenneth Miller
t how to write a pom.xml On Tuesday, July 31, 2012 6:01:57 AM UTC-4, Kenneth Miller wrote: > > I know that this is Hudson, but I was thinking that because Hudson and > Jenkins are so similar and that because there is much more activity in the > jenkins mailing list that this migh

FW: [hudson-dev] Error building‎

2012-07-31 Thread Kenneth Miller
I know that this is Hudson, but I was thinking that because Hudson and Jenkins are so similar and that because there is much more activity in the jenkins mailing list that this might be worth a shot. I just want either Jenkins or hudson to work building a very simple hello world java project

Re:

2012-07-16 Thread Wieschhoff, Kenneth
www.nityainc.com <http://www.nityainc.com/> > & : sherry.nityainc > 9690 South 300 West, #319 Salt Lake City, UT 84070 >   >   > -- Kenneth H. Wieschhoff, Jr. NBA - Digital Turner Broadcasting Systems 404.509.0987

Re: Nabaztag

2012-04-27 Thread Wieschhoff, Kenneth
I could set it up to play an MP3 of a train horn with all lights blinking red and the ears waving wildly :) On 4/27/12 9:09 AM, "Maven User" wrote: > ++ > > On Friday, April 27, 2012 5:19:03 AM UTC-4, Sven Strittmatter wrote: >> Am 26.04.12 16:26, schrieb Wieschhoff,

  1   2   >