Questions tagged [delivery-pipeline]

A system for automating the delivery of software that can include build automation and continuous integration; test automation; and deployment automation.

21 questions
15
votes
4 answers

Jenkins pipeline - How to iterate through a list

I'm required to read values from a file in my pipeline. I'm using split() which puts them into an Array. I need to put them into an Arraylist so I'm using Arrays.asList(). The problem I'm having is I'm unable to use the size() or length() methods…
mdo123
  • 1,757
  • 3
  • 16
  • 34
3
votes
0 answers

Jenkins delivery pipeline view -how to add manual trigger(play button)?

I am trying to connect/achieve below things: Pipeline having job with multiple stages and tasks Configure above pipeline with Delivery view plugin Last task of last stage is to deploy to production [caution: want this task with manual…
3
votes
1 answer

Jenkins Delivery Pipeline View doesn't show pipeline jobs

I try to show some delivery pipeline instances in jenkins Delivery Pipeline View. If the delivery pipeline instance is defined as ‘Free Style’ or ‘MultiJob Project’ everything works fine, but the Job does not appear in the Delivery Pipeline View…
T.La
  • 31
  • 1
  • 5
3
votes
1 answer

Jenkins - Wait for the manual step to finish in parallel with some automatic job

I'm trying to build the above 'delivery pipeline' using Jenkins. Every job excluding "Manual Step" will run when upstream jobs end with success. My problem is that I cannot do 'join' between the two jobs (run "Manual Step" and "Auto Step" in…
zedv
  • 1,459
  • 12
  • 23
2
votes
3 answers

How do I access a private Container Registry from IBM Cloud Delivery Pipeline (Tekton, dockerconfigjson)

I am trying to use a container image from a private container registry in one of my tasks. apiVersion: tekton.dev/v1beta1 kind: Task metadata: name: echo-hello-world spec: steps: - name: echo image: de.icr.io/reporting/status:latest …
habercde
  • 161
  • 1
  • 10
2
votes
1 answer

Where to set API KEY to deploy on IBM Bluemix Cloud Foundry

I'm deploying via Delivery Pipeline on IBM Bluemix Cloud Foundry. On logs I have this message: WARNING: Deploying to Cloud Foundry without specifying an API KEY is DEPRECATED. Press the [CONFIGURE] button above to include an API KEY for this…
Giovesoft
  • 580
  • 6
  • 21
2
votes
1 answer

How to redirect to a particular pipeline instance in a delivery pipeline view in Jenkins?

I am using the Delivery pipeline plugin for grouping my jobs into stages. Currently, there seems no mechanism to directly go to a particular older pipeline instance in the view. I wanted to provide a provide a mechanism(posssibly a link) in the…
2
votes
1 answer

Delivey Pipeline plugin in Jenkins

We are using the 'Delivery Pipeline' plugin in Jenkins. We have defined a view called 'DeliveryPipeline'. The view takes a job called 'Initialize' as its initial job. It shows the build numbers for the initial job as depicted in the below pic,…
1
vote
2 answers

Can I use git command in delivery pipeline if git is installed in different path on jenkins agent than on master

I have the following scenario. I tried a simple pipeline job that clones my remote repo. It works fine when i set it to execute on master. node { //stage 'Checkout' git([url: 'ssh://someusername@gerrit.mycompany.domain:29418/bla/bla.git',…
1
vote
2 answers

Jenkins: Triggering Maven Release manually in Build Pipeline

I got a problem with my Jenkins (1.6) setup and so far haven't found a solution. What I want to do: I have 4 Jobs (StartJob, TestA, TestB, ReleaseJob) and I'd like to have a "pipeline", that says: Start with "StartJob" After that, build "TestA"…
1
vote
1 answer

Managing several maven artifacts in a delivery pipeline

This is not a programming question by but a delivery pipeline question: Our product is built of several maven artifacts, which release SNAPSHOTS (2.0.1-SNAPSHOT) on a daily basis and release versions (2.0.1) on a weekly basis. During development,…
orepor
  • 905
  • 2
  • 13
  • 23
1
vote
1 answer

How can a final-job-to-be-displayed in a Jenkins Delivery Pipeline view be configured using the Job DSL?

The setup We're using the Jenkins Delivery Pipeline Plugin (https://wiki.jenkins-ci.org/display/JENKINS/Delivery+Pipeline+Plugin) We're also using the Job DSL Plugin (https://wiki.jenkins-ci.org/display/JENKINS/Job+DSL+Plugin) How to do it through…
Stephan
  • 75
  • 1
  • 9
1
vote
1 answer

Using bluemix delivery pipeline across organizations and regions

In Bluemix, I have to deploy exactly same application in different regions (UK & US-South). Is there a way I can use a single instance of delivery pipeline to deploy to different spaces in each of those regions. Appreciate the help
jeet
  • 629
  • 1
  • 4
  • 15
0
votes
1 answer

Cloud Foundry app built with PHP buildpack - custom extention disappears after deploy

I have a CIO Blumix Cloud Foundry PHP app developed that needs some additional components. I used https://github.com/cloudfoundry/php-buildpack for the build. I read in its documentation that I can add my own extension. I did that and added a…
Andr
  • 88
  • 1
  • 10
0
votes
2 answers

Can I pass the VCAP_SERVICES to the test stage at the IBM Cloud Continuous Delivery pipeline?

When in (unit) test stage I'm running the following commands: echo "Installing Node Modules" npm install echo "Run Unit Tests" npm run test-mocha My problem is that I cannot access the VCAP_SERVICES in the test stage (job is set to unit test). Is…
KiSa87
  • 23
  • 6
1
2