Questions tagged [promoted-builds]

A plugin for Jenkins to distinguish between good and bad builds.

A promoted build is a successful build that passed additional criteria (more comprehensive tests). The typical situation when you use promotion is when you have multiple 'test' jobs as downstream jobs of a 'build' job. You can configure the build job to promote the build when all the test jobs passed. This enables you to keep the job run fast (faster feedback when a build fails), and you can still distinguish good builds from the builds that compiled but had runtime problems.

23 questions
5
votes
1 answer

Promoted build plugin deploy artifacts to repository

We have a Jenkins Maven build running on a Windows slave which runs maven package on every commit. I'm trying to use the promoted build plugin to deploy promoted builds to a nexus release repository. I've set the "promote build when..." to manual…
Andy March
  • 586
  • 1
  • 5
  • 20
3
votes
1 answer

How to deal with promoted conflicting branches on jenkins

The idea is: all devs work on their feature branches and push them to github jenkins starts builds (triggered by "push on github") on job test to run unit tests on those feature branches Once they pass the test, manager goes to github to do code…
user378132
  • 311
  • 1
  • 4
  • 11
2
votes
1 answer

Jenkins promote build in Jenkins delivery pipeline view

I have different Jenkins pipeline jobs for Build, Deploy, QA Automation tests and Release to Production. I am building a Jenkins Delivery pipeline to run these jobs in a single pipeline. The pipeline should be like once QA certification is done, a…
2
votes
0 answers

Chain Jenkins Promotion Jobs (Different Builds\Same Environment)

Suppose one has several Jenkins jobs (e.g., Job1, Job2, Job3) and the Promoted Builds plugin is installed. Each job has a different latest build: Job1 - #26 Job2 - #2 Job3 - #7 The Promoted Builds plugin lets one promote each of these builds -…
blashmet
  • 249
  • 1
  • 4
  • 15
2
votes
1 answer

Is there a way to display promotion status in Jenkins next to each build history?

In Jenkins we can promote the build for each build number. I want to display the status of promotion in the right side of each build in build history box? Otherwise is it possible to list all the builds which needs to be promoted in a seperate…
karthikeayan
  • 4,291
  • 7
  • 37
  • 75
2
votes
1 answer

Legacy code started this job. No cause information is available

There is always an extra build with triggered by "promote build plugin" on jenkins, which I dont know why... Here is the whole pipeline: dev commits "feature_branch" to github jenkins triggers a build on "feature_branch" to run all unit tests on…
Hao Huang
  • 53
  • 4
1
vote
0 answers

Jenkins - How to determine compatible promoted-builds plugin version?

We are using Jenkins ver. 2.19.1 and we want to add the promoted-builds plugin, but the latest version (3.2) needs some other plugins to be updated first. Long story short - we can not update plugins - we can add new ones if they don't interfere…
1
vote
1 answer

Jenkins Promotion plugin

Im quite new to Jenkins, Is there any way I can get all the jobs where approval is pending when using Jenkins promotion plugin? So that I can list all the pending approvals required in UI and ask the approver to approve them by making a http call.
Rohith
  • 96
  • 1
  • 1
  • 7
1
vote
0 answers

How to pass parameters from one promotion to another promotion in the same job in jenkins

I am working in Jenkins. I have one job setup. In which I have 4 promotions like dev qa staging and prod. We have a choice parameter set in third promotion. And depending on the value selected in 3rd promotion I want to execute 4th promotion.Is…
Saga
  • 11
  • 1
1
vote
1 answer

Queue build on Jenkins. Trigger it manually

I am looking to implement a 'workflow' in Jenkins. I would like - Requester_Jenkins_Job is triggered by the developer. A mail is dispatched to the approver. The promotion plugin is used. The approver manually 'approves' the request, which in turn…
mmukhe
  • 668
  • 9
  • 22
1
vote
0 answers

Jenkins CI - Promote Corresponding Downstream Jobs

I am currently using the Promoted Builds Plugin to promote jobs into QA, Test, Production, etc. This plugin is really great for promoting a single job. However I am looking for a way to promote the parent job and have that job promote the rest of…
1
vote
0 answers

Jenkins PromotedBuild and Artifactory

I have the following jenkins work flow : I'm using a Build Flow to orchestrate several jobs. Job 1 -> publish artifacts to artifactory Job 2 -> publish artifacts to artifactory Job 3 -> uses artifacts from artifactory (I actually have several more…
facewindu
  • 705
  • 3
  • 11
  • 31
1
vote
1 answer

Support of ${CHANGES_SINCE_LAST_SUCCESS} in email after promoted-build?

I use Jenkins (v1.578) with promoted-build (v2.19) and mail-ext (v2.38.2) plugins. I would like to use the ${CHANGES_SINCE_LAST_SUCCESS} in an email sent as an Action after the promotion succeeded. At the moment I get a blank value for…
Olivier.Roger
  • 4,241
  • 5
  • 40
  • 68
0
votes
0 answers

Use Maven Artifacts Installed by Jenkins Job A in Job B

I have a multi-module Maven project that installs a whole bunch of artifacts (with different classifiers) into the local Maven repository. I also have a second Maven project that uses the Maven Dependency Plugin to collect those artifacts into a…
Bombe
  • 81,643
  • 20
  • 123
  • 127
0
votes
0 answers

Promote docker image in Artifactory using Jenkins

So I'm trying to promote docker image using artifactory jenkins plugin. rtPromote ( buildName: 'MK', buildNumber: '48', serverId: 'Artifactory-1', targetRepo: 'libs-release-local', sourceRepo: 'libs-snapshot-local', includeDependencies:…
shasi222
  • 15
  • 7
1
2