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

Deploy on azure continous delivery custom node app

I have a node app that has both a react native front end and a node API I want to be able to just run npm install for both folders and then just have it run the start command "node server" (node/server/index.js) to have the node app running. But I…
HexBlit
  • 1,172
  • 1
  • 13
  • 31
0
votes
2 answers

IBM Cloud DevOps pipeline deploy with NodeJS and private registry

Using private registry in connection with IBM Cloud DevOps pipeline, we've got modules published. In DevOps pipeline also build is possible using following tactic: #!/bin/bash export PATH=/opt/IBM/node-v6.7.0/bin:$PATH npm config set…
jarkko
  • 76
  • 8
0
votes
1 answer

Duplicating the same build process as in CI/CD for debugging

I am a bit new to CI (Continuous Integration)/CD (Continuous Delivery) topics. I am currently using TFS for CI and CD. There I found there are a lot of custom build process (eg. Running certain powershell scripts, copy files, etc). In my solution,…
0
votes
1 answer

Visual studio Continuous Delivery options missing

I am trying to make a continuous deployment of dotnet core 2.0 app in visual studio 2017 community as per https://channel9.msdn.com/Events/Visual-Studio/Visual-Studio-2017-Launch/T115 The given options are specified in that video are like this But…
0
votes
1 answer

How to make TFS deploy ASP.net Web App after successful build?

I am trying to set up one of my ASP.net projects for continuous integration with TFS. Amongst my requirements, I need to set up TFS so that each time there is a successful build with passing tests, the ASP.net code should be deployed to my…
Vivian River
  • 31,198
  • 62
  • 198
  • 313
0
votes
1 answer

Jenkins 2 Declarative pipelines - Is it possible to run all stages within a node (agent any) but having some of them running without it?

I have a CD pipeline that requires user confirmation at some stages, so I would like to free up server resources while the pipeline is waiting for the user input. pipeline { agent any stages { stage ('Build Stage') { steps { …
0
votes
1 answer

Maintaining .war artifacts in Jfrog local Artifactory and downloading it for deployment

I am trying to use Artifactory to upload and maintain my artefacts (.war,txt etc) ; currently i want to upload the artifacts through web portal(UI Console) only and download it on specific machine where that .war supposed to be get unwar and run as…
0
votes
1 answer

External Jenkins + Openshift - how to verify in the pipeline that the deployment actually worked (the application started ok)

I am developing a jenkins declarative pipeline to automate the delivery of Spring Boot applications running on Openshift 3.2. My Jenkins instance is external to Openshift and I am using openshift-pipeline-plugin to perform the build & deploy…
0
votes
2 answers

Cherry Pick Automated Release in TFS

We have a CI process that we push our changes in a development branch to the dev server and the QA server for testing. Once we are satisfied the changes work and QA has passed their tests, we would like to cherry pick the changes from that brand…
0
votes
1 answer

Visual Studio 2017 C#: How to create an Installer that can provide continuous updates

I've been trying to find an answer to this for weeks. Hopefully you are able to help me out! :) I've got a C# application. It has multiple classes and multiple Forms. The forms also have images on them in PictureBoxes. These images are all stored in…
0
votes
1 answer

AWS CodeBuild for python does not fail

I might have been misunderstood the concept, but does not a Codebuild step fail when there is an error in your code and it can not build that code? I assumed that if one command in my build commands fails, it will notify me and/or stop the further…
0
votes
1 answer

IBM bluemix Git repository push and pull requests

I have created an Tomcat server application in Bluemix and enabled the Continuous Delivery service for it. It automatically created a Git Repository. However, with that Git URL if i try to import that project into local Eclipse, it is not…
user2918673
  • 141
  • 1
  • 9
0
votes
0 answers

Configuring gitlab with TeamCity

I'm using GitLab CE 9.2.1 df00a75 and TeamCity 2017.1.1 (build 46654) and I need to build next: When developer open merge request TeamCity should run ESlint and Jest tests and return to gitlab success or failure status. When I accept merge request…
0
votes
1 answer

Using VSTS to build/run Selenium tests defined in shared solution

I'm responsible for user acceptance testing for a .NET project being developed by a third party organisation. They have created a solution in VSTS and we're collaborating using the Agile process to communicate requirements and acceptance criteria…
0
votes
1 answer

How do you deliver your application using the concept of containers (Docker containers)

This is a question about deliver and developing microservices using containers. How do you deliver your application using the concept of containers? Do I really need to generate a Docker container with my application on every build? Even local…