On Tue, 2013-06-25 at 15:41 +0100, Robbie Gemmell wrote: > The Jenkins job to run the Java client tests against the C++ broker has > been failing since this commit last week. It seems to be having trouble > trying to copy a file to its own location. > > https://builds.apache.org/view/M-R/view/Qpid/job/Qpid-Java-Cpp-Test/1431/ > > Is this an issue with the Jenkins job, or the build process?
Hmm, the jenkins job appears to be building in place, which is not what we recommend for the C++ build. Having said that it is supposed to work. The easiest fix (given that we are removing the autotools build soon and so don't want to spend lots of time on it) would be to move to a build with a separate build directory. Something like instead of: cd qpid/cpp ./bootstrap ./configure make Do cd qpid/cpp ./bootstrap cd .. mkdir BLD cd BLD ../cpp/configure make > > (The job is still using the Autotools build, as we have yet to try swapping > it to CMake and requesting installation of any necessary packages on the > Jenkins nodes...anyone actually working on C++ bits is of course also > welcome to volunteer :P) We will need to shift to cmake soon, what is involved in doing this? I'm happy to help here. Andrew --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org For additional commands, e-mail: dev-h...@qpid.apache.org