Questions tagged [continuous-delivery]

Continuously building, testing and deploying (to non-production environments) applications to prove which instances are fit to be deployed to production.

Continuous delivery is the process of automating as much of the build pipeline as possible to produce deployable applications as quickly as is reasonable. It is the last step before continuous deployment, which also puts the deployable application into production automatically.

This tag is suitable for questions about

  • creating and managing the pipeline used to coordinate the build, test and deploy process
  • environment configuration management
  • wiring build tools to assist with the automated configuration of deployments
  • configuration of continuous integration tools such as Jenkins, Thoughtworks' Go and Atlassian's Bamboo
  • the configuration and deployment of temporary virtual machines and environments specifically for the testing of deployment processes
  • configuration of tools for managing those temporary environments, such as Vagrant
584 questions
0
votes
1 answer

How can I configure IBM Cloud App ID as part of an open toolchain?

I am using IBM Cloud App ID for user management / authentication and Continuous Delivery with a toolchain to deploy the app to IBM Cloud. There is an API to configure App ID, e.g., to set the password strength or to disable email verification for…
data_henrik
  • 16,724
  • 2
  • 28
  • 49
0
votes
1 answer

Where GitLab build the application?

Does someone know what Cloud engine is used by GitLab CI to build the projects (even the private ones) you store in it? I've started using it and it works fine. But I don't know where my code is running on.
R. Karlus
  • 2,094
  • 3
  • 24
  • 48
0
votes
1 answer

Jenkins configuration with remote live server

I want to know how to configure Jenkins with my live preprod instance server ? Let me to explain you my process and tell me if I'm right and if that's not the good way to do. 1) I have my project project-1 in a server: /var/www/preprod/project-1,…
0
votes
1 answer

Setup Heroku environment variables value from Travis-CI builds

In my project I use Travis-CI for continuous integration (builds on every MR to master branch) and also for deploying the artifact to Heroku. Here is my .travis.yml file: language: java jdk: oraclejdk8 branches: only: - master script: mvn…
0
votes
2 answers

How to trigger a jenkins job using the Trac Notification feature?

The trouble is that we have our repository hosted by an external party, preventing hook scrips due to the security issues executing arbitrary scripts could bring. Hook scripts are therefore no option for me. A quick email with our host revealed that…
Adrian vdBoom
  • 83
  • 1
  • 7
0
votes
1 answer

VSTS - SQL Server Deploy Dapac Task Not Working

I set up an SSDT SQL Server project in Visual Studio from where I can publish my database to on-premises target environment successfully. The requirement is however to use a CI/CD pipeline in VSTS to automate our build and deployment of this…
0
votes
0 answers

Converting Data pipleine into Code Pipeline

I have a data pipleine running in aws . I can extract JSON out of it. Is there any way i can convert this JSON into codepile line json or yaml ? I have tried in CloudFormer but i could not found the option for Data pipeline .
0
votes
1 answer

Best strategy to dockerize Java with Angular JS applications

I have a java/AngularJS project that needs to be dockerize for CI/CD process. My project is as below: Project: UI - Angular/Node JS Java - Project ABC: -- Branch: Master -- Service 1…
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
0
votes
1 answer

IBM Cloud DevOps java build + test

We have a pipeline that uses Build task with 'Gradle (Artifactory, Nexus, or SonarQube)' for gradle builds of java application. Tests are also using gradle, what tester type should be used for a pipeline job with that ?
jarkko
  • 76
  • 8
0
votes
2 answers

Should I create a Jenkins job for each microservice?

I have 4 microservices and all of them are built on the same technology stack (Java Dropwizard, MySQL), and I'm trying to create a CI/CD pipeline for them, but the question here is: Is it a good idea to have a separate Jenkins job for each…
0
votes
2 answers

Why can't the deploy stage of my Bluemix devops pipeline find the WAR file that was created in the build stage?

I have a Java app that runs fine on my local Liberty server (Eclipse IDE). I'm trying to deploy this app to a Bluemix Liberty server using the Continuous Delivery pipeline. The app uses the Maven builder and the build stage finishes successfully.…
David Powell
  • 537
  • 1
  • 4
  • 16
0
votes
1 answer

Private build for CI/CD workflows

I am looking for recommendations or best practices to implement private builds in CI/CD. When developers check in code to a "private branch" or a personal workspace in source control it should trigger CI / CD workflows in Jenkins. It should be…
0
votes
0 answers

CI / CD and release management with Jenkins

Setup Visual Studio 2013 SCM using Git with bare repositories held on network filesystem SourceTree Jenkins build server Typical projects include c# WinFroms and Web Api/MVC applications Each VS solution holds test projects e.g. unit tests /…
Sulphy
  • 766
  • 2
  • 9
  • 29
0
votes
1 answer

TFS set approver with PowerShell

I have a release definition in TFS 2018. For every environment, I can set pre-deployment approver(s) (AD group) in the GUI. I need to do this from code (preferably PowerShell). Is there a way to do this? I did not find any way how to achieve this…
Petr
  • 182
  • 1
  • 4
  • 18