A means of configuring a build such that different configuration options can be parameterized, rather than duplicating build steps, or having multiple builds. Applies to multiple build frameworks, such as Jenkins, and TFS's vNext.
Questions tagged [multi-configuration]
45 questions
2
votes
1 answer
Why is capistrano multiconfig not working?
I had a working capistrano setup for my app but I installed the multiconfig gem so that I could deploy to two different servers using capistrano. Running
cap primary:production deploy
works perfectly, but when I run rails s I get this error:
rails…

Sofia Bravo
- 579
- 8
- 22
2
votes
1 answer
How to trigger a job for each configuration in a matrix project
I have to achieve the following :
I have a multiconfiguration project A having two configuration C1 and C2, now for each successfull configuration I want to build another project B, say:
if C1-success and C2-fails then C1 --> B
if C1-fail and…

user1394523
- 161
- 1
- 2
- 7
1
vote
1 answer
How to I archive the artifacts in a Jenkins multi-configuration build involving multiple OSs?
I have a multi-configuration build which is building on a variety of operating systems (currently only 32 bit and 64 bit Linux, but more to be added). The builds produce an "install" directory that I want to archive. In a previous freestyle build of…

Anthony Berent
- 105
- 1
- 6
1
vote
0 answers
Angular universal: how to prerender a routesFile in a multi configuration project
Angular universal: how to prerender a routesFile in a multi configuration project
I have an angular project that has multiple configurations
I installed the express-engine using the command
`ng add @nguniversal/express-engine`
I have also updated…

Omar Haddad
- 11
- 1
1
vote
0 answers
Jenkins job takes a long time to complete after it prints "finished"
I have a case when running a matrix job, once it prints "Finished: SUCCESS", it sits there spinning for a long time (~15-20 mins) before the job actually tears down and completes. Any ideas why this would be the case?

solstice333
- 3,399
- 1
- 31
- 28
1
vote
1 answer
Compile Boost with multi-configuration with CMake
I have a project which depends on the Boost library (and others). I created a CMakeLists to automatically download and compile dependencies with ExternalProject_Add.
I want to support multi-configuration (Release and Debug). So, for my other…

whiteShadow
- 369
- 4
- 19
1
vote
0 answers
Jenkins Multi Configuration Job needs to dynamically modify app.config on nodes
I have a .net test automation suite that needs to run simultaneously on 6 nodes.
I have configured a multi configuration job on Jenkins. The catch is, it needs 6 different app.config values (for example, connections strings, web urls, browsers etc.)…

Prasad
- 11
- 3
1
vote
1 answer
Jenkins Pre-Build and Post-Build in Multi-Configuration Job
We use multi configuration job to test various combination of 2 separate components for compatibility test. These are our compatibility acceptance tests. We perform the following steps
Prepare test environment using docker and docker-compose where…

GauravJ
- 2,162
- 1
- 22
- 28
1
vote
2 answers
Jenkins slaves workspaces
I have a Jenkins multi-configuration project that I want to build on two slaves (Slave-1 and Slave-2) which are located on two different VM's. I am having a problem with how Jenkins attempts to create different workspaces for each slave. I want to…

Stew C
- 697
- 3
- 10
- 24
1
vote
1 answer
Post build script for multi-configuration project
I run a multi-configuration project in jenkins that does several different builds, I would like to run a script when all the sub-configuration/builds are finished.
Is there any thing like a PostBuild action for a multi-configuration job in Jenkins?

Johan Dahlin
- 25,300
- 6
- 40
- 55
0
votes
0 answers
multiple multi-configuration projects with shared axis on jenkins
we have a bunch of multi-configuration projects and all of them share one axis. is it possible to control it globally for all of them? at the moment it is a bit tedious to edit all projects and make sure that the axis is the same.
I can think of a…

pawel
- 1,031
- 2
- 9
- 16
0
votes
0 answers
How to mark a build unstable for the matrix parent in Jenkins multiconfiguration project if any of the child job has failed
I have already looked at How to mark a build unstable in Jenkins when running shell scripts. But none of the solution covers the fact that I want to mark my matrix parent as unstable rather than failure.
Code I have currently using the groovy post…

OT_DEV
- 161
- 1
- 1
- 10
0
votes
0 answers
Azure Pipeline multi-configuration overwrites previous builds
I am using a pipeline build where my BuildConfiguration parameter has three values (debug, stage and release). The three consecutive builds all say Successful when run. The agent release directory folder only has the last one built! …

Crisci
- 1
- 1
0
votes
1 answer
Conditional Pipeline (Visual Studio Test) Task in Multi-Configuration Azure Devops 2019 Build Pipeline
We have an on-premises, TFVC setup with Azure Devops 2019. I'm building a C++ library and have set-up a multi-configuration build (Debug, Release) which works fine. However, I'd like to run a set of unit tests only when the Release configuration is…

jslmsca
- 196
- 1
- 14
0
votes
0 answers
How to add separate parameter for a combination in multiconfiguration project of jenkins
I Have to run a testsuite for following combination, I am using multi configuration project for this. I am looking for something that can allow me to add host_machine for each combination on the fly or statically
Edit: I am triggering test…

TheBeginner
- 405
- 5
- 23