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.
 
Has anyone ever succeeded with that approach? - or is it the wrong way to 
go?
 
basically I have a project aa that produces a dll. It builds fine, and i 
keep the articfacts.
project bb, uses it project cc does some testing.
 
my jobs are set up like this: 
aa
 monitor subversion
 msbuild aa
 archive artifacts ( aa.dll )
 create fingerprint for archived artifacts
 trigger build of bb and cc
bb
 monitor subversion 
 copy artifacts from another project (aa.dll)
 build bb << FAILS it claims that msbuild can it cannot find the refered 
project aa.project
cc
 copy artifacts from another project (aa.dll)
  build bb << FAILS it claims that msbuild can it cannot find the refered 
project aa.project
 run unit test in cc.dll on aa.dll
 
any clues on why bb and cc can't build?  
 
It works if I put all the source in the same job, but I don't wan't to.

Reply via email to