The parallel-builds tag has no wiki summary.
0
votes
1answer
113 views
Maven aggregate POM and parallel build
During non-parallel build aggregate POMs are built last provided there is no parent-child relationships between it and its submodules (correct me if I am wrong).
Is that preserved during parallel ...
1
vote
1answer
311 views
Debugging CMake/Make dependencies for a parallel build
I manage for work a complex C++ project, whose build definitions are written in CMake and the build itself is obtained by invoking make. The source tree is composed by many modules and it is highly ...
1
vote
0answers
69 views
Parallel builds in Eclipse collide
I have two C++ Eclipse projects (each pointing to different sandboxes of version-ed code) imported in separate workspaces. I am launching two parallel sessions of eclipse on different machines and ...
1
vote
0answers
1k views
Cmake and Parallel Build
Is it somehow possible to be able to have a parallel build no matter which build tool is used?
Under UNIX we can add "make -jN" where N are the number of threads
and under Windows I added the CXX ...
0
votes
1answer
217 views
Maven 3 Parallel Gmaven Sporadic failure
My Maven 3.0.4 parallel build fails intermittently on the following error:
[ERROR] Failed to execute goal org.codehaus.gmaven:gmaven-plugin:1.2:compile (default) on project opcenter: No providers ...
2
votes
1answer
116 views
Maven 3 Parallel build Projects Skipped
Does anybody know of any reason why some of my projects are marked as SKIPPED at the end of a successful maven build?
please note that the 'skip chain' always starts with my web project which ...
5
votes
2answers
717 views
“Serialize” Bamboo builds?
We are using Bamboo v3.1.1 as our continuous integration build server, and it works quite well - most of the time.
One issue we're having is that we're doing a fair amount of database-oriented ...
0
votes
3answers
203 views
Fast, easy to maintain, and parallelizable way to build java code?
I'm working on a build system that has bad practices piled on other bad practices for a long time and I'm in the process of re-writing the build. The languages involved are C/C++, Fortran, Ada, and ...
25
votes
6answers
9k views
How to do a parallel build in Visual Studio 2010
How can I get VS 2010 to run more than one C++ compile process at a time? I mean building object modules in parallel; I'm not interested in building more than one project at a time (I know about Tools ...
14
votes
4answers
6k views
Using multiple cores/processors when compiling Java
I use a desktop with eight cores to build a Java application using Ant (through a javac target). Is there a way to speed up the compilation by using more than one thread or process?
I know I can run ...
1
vote
1answer
380 views
issue with using MSBUILD with maxcpucount option
I am using MsBuild on a 4 core machine.
I am giving the following command line to build 4 projects belonging to a big VC++ solution ( having more than 4 projects ALL with no mutual dependencies ). I ...