Skip to main content
2 votes
1 answer
304 views

I have a top level CMakeLists.txt file that includes 2 sub directories. It builds properly as long as -j or --parallel are not on the cmake command line. The CMakeLists.txt file documents the issue. ...
pacmaninbw's user avatar
0 votes
1 answer
494 views

I have a Jenkins pipeline that runs several stages in parallel. Some of those stages produce intermediate build files that I'd like to reuse in a later step: pipeline { stages { stage("...
user avatar
0 votes
1 answer
272 views

in a CI/CD system, when multiple concurrent xcode processes run in parallel on the same mac-agent, errors occur with the processing of the shared cache. Error example: ❌ fatal error: malformed or ...
Mike Rosario's user avatar
1 vote
1 answer
131 views

I have a Jenkins jobs that runs as so (very simplified but the structure is there): #!/usr/bin/env groovy node('my_label'){ timestamps{ build() postBuild() } } def build(){ parallel{ ...
iwantmyhatback's user avatar
0 votes
2 answers
423 views

I need to disable parallel run for a single target. It is a test that verifies if program doesn't create some random or incorrectly named files. Any other file that is build in the meantime fails this ...
Piotr Siupa's user avatar
  • 5,231
1 vote
0 answers
349 views

I have project name libtld where I first create a tool¹: project(tld_parser) add_executable(${PROJECT_NAME} ../tools/tldc.cpp tld_compiler.cpp tld_file.cpp tld_strings.c ) Then I use ...
Alexis Wilke's user avatar
  • 21.2k
0 votes
0 answers
486 views

I have a medium-size project which consists of many *.c unit files. In a "normal" compilation exercise, the program is built from its *.o object files, which are passed as pre-requisite of ...
Cyan's user avatar
  • 14.1k
1 vote
0 answers
310 views

I am trying to run commands in parallel in codebuild using the batch-list function, however, I cannot get it to work as intended. The commands are getting executed sequentially and not in parallel. ...
Bhargav Mg's user avatar
0 votes
1 answer
282 views

I get this kind of error sometimes in gitlab ci-cd worker log. How can I fix it and set up parallel builds for MSVC projects? ********************************************************************** ** ...
buridan's user avatar
  • 11
7 votes
2 answers
2k views

I have a multi-module maven project in which the modules have quite a few dependencies between them. I have tried running my tests in parallel, but since the modules are not very well thought off and ...
Alex A's user avatar
  • 173
0 votes
1 answer
1k views

I observe that a C++ visual studio (VS) 2017 solution with multiple projects that have multiple source files may not be built in parallel within a single project. On the other hand, the projects are ...
user3677630's user avatar
0 votes
1 answer
330 views

I'm converting an old OCX project to QMake (as it's getting the "new" standard in my company). In my Button.pro file, I add the MIDL compiler by the means of idl_c.output = $${DESTDIR}/${...
NonoxX's user avatar
  • 134
0 votes
0 answers
146 views

I use Visual Studio 2017. I work with Windows Form Application, Visual C#. There is a timer with 30 seconds interval in my program. Timer starts at Form_Load event method. Actually i use form load ...
Bee-'s user avatar
  • 64
4 votes
2 answers
2k views

I usually use a high level build system like cmake for building my C/C++ code. But for various reasons I am using straight GNU make. I am doing recursive build where each directory has a makefile. I ...
Trevor Boyd Smith's user avatar
1 vote
1 answer
2k views

I'm trying to speed up my maven build with parallel processing. The project is multi-modular with nested modules. The structure is like: parent m1 m2 sub-parent (a project that doesn't generate an ...
Imaskar's user avatar
  • 3,009

15 30 50 per page