Questions tagged [multi-configuration]

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.

42 questions
38
votes
9 answers

Jenkins and multi-configuration (matrix) jobs

Why are there two kinds of jobs for Jenkins, both the multi-configuration project and the free-style project project? I read somewhere that once you choose one of them, you can't convert to the other (easily). Why wouldn't I always pick the…
joscarsson
  • 4,631
  • 4
  • 33
  • 41
23
votes
3 answers

Is it possible to convert a Jenkins free-style job to a multi-configuration job?

I have quite a few free-style jobs in Jenkins that I would like to convert to multi-configuration jobs so I can build across multiple platforms under one job. These jobs specify quite a few build parameters and I would like to not have to set them…
RC.
  • 25,495
  • 8
  • 69
  • 90
7
votes
2 answers

How to configure jenkins multi-configuration build and test

I need to build and test on multiple configurations: linux, osx and solaris. I have slave nodes labeled "linux", "osx" and "solaris". On each configuration, I want to (a) build (b) run smoke tests (c) if smoke tests pass, then run full tests, and…
Peter McLain
  • 958
  • 6
  • 6
5
votes
1 answer

Jenkins multi-configuration project doesn't aggregate test results

I have a multi-configuration project set up to run FF and IE selenium tests. However, it's not aggregating the test results. If I look at the Project Page I see this: If I go into a specific build I see this: But if I click on one of those…
Joel
  • 15,576
  • 16
  • 69
  • 92
5
votes
1 answer

Cmake: Specifiy config specific settings for multi-config cmake project

Cmake novice here, I am currently trying to convert a cmake project that was developed with only single configuration in mind to a multi-config project which can generate visual studio files. My problem that I can not solve is that in the cmake…
rSir
  • 73
  • 4
5
votes
1 answer

Jenkins build multi-configuration project with MTAF not working on Sauce Labs

I configured the Magento Test Automation Framework (MTAF) with Jenkins and Sauce Labs and everything is working well. However, when building a multi-configuration project, I have selected two more browsers from the browser list in Jenkins' job…
4
votes
2 answers

How do you make TeamBuild 2015 multiple configuration options not apply to all steps?

I like the concept behind MultiConfiguration via the "Options" tab in TFS 2015 TeamBuild. But I don't want the resulting "matrix build" to apply to every step in the build definition. We generally want to run custom "post VS SLN compile steps"…
Keith Hill
  • 173,872
  • 36
  • 316
  • 347
4
votes
2 answers

Access file parameter in jenkins

I'm working on a multiconfiguration job(Regression_L1) in Jenkins whose task is to run 2 kinds of tests(test1 and test2). In the multiconfiguration job, it triggers an executor job(Regression_executor) to run script for the selected test. The…
ac22
  • 73
  • 1
  • 2
  • 9
4
votes
3 answers

Jenkins Python API and Multi-Configuration Projects

I have set up a multi-configuration project in Jenkins and I'm trying to manage those jobs through a command line script. I'm trying to use the jenkinsapi Python module for this. So far I've found how to get my job, but I can't figure out how to get…
Jonathan Sternberg
  • 5,796
  • 6
  • 33
  • 57
3
votes
1 answer

CMake find_package not handling multi-configurations

We're using Jenkins 2.60.2 and CMake 3.9.1 to automate our build system. This all works well for multiple versions of build tools, architectures and debug/release targets (if ALL configurations have been built and installed, so both Debug AND…
StarShine
  • 1,632
  • 23
  • 40
3
votes
0 answers

Jenkins: How to copy files from a Matrix build back to the master and actually use them

I have a multi-configuration Jenkins job which runs my tests in parallel on multiple slave nodes. I want to collect some artifacts from those slave builds back on the master, and then run a post build step to build a custom HTML page from them. I…
Dan J
  • 24,430
  • 17
  • 95
  • 168
3
votes
3 answers

Make Jenkins build multiple configurations with variable SVN URLs

I want to automate our build processes. We have 30+ configurations, each with a different SVN branch. Ideally, I would want to avoid having to create 30 separate Jenkins jobs, due to maintenance effort and risk of human error. This is what…
Salieri
  • 742
  • 6
  • 17
2
votes
0 answers

How to use Jenkins multi-configuration for micro-services build process?

To give a background, we have nearly 20 micor-services each of which has its own Jenkinsfile. Although each micro service may be doing some extra steps in their builds, e.g. building extra docker image, but most of these steps are the same across…
xbmono
  • 1,310
  • 1
  • 20
  • 35
2
votes
1 answer

How to keep artifacts directory during the multi-configuration build in TFS?

I have a solution with multiple projects where some are web apps. I have set up a multi-configuration build in TFS vNext that builds the single app, creates an MSDeploy package, gets the proper staging configuration files and add or replaces the…
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…
1
2 3