Questions tagged [continuous-deployment]

A software engineering approach in which teams keep producing software in short cycles and ensure that the software can be released to production at any time.

Continuous Deployment (CD) is a continuous automation process where deployment of software to production systems is fully automated. This ensures that fixes and new features can be brought to production quickly.

This usually includes having a good set of automated tests to automatically verify the fitness of the software for production use.

See the article Continuous Delivery on Wikipedia for more information.

2667 questions
1
vote
2 answers

Start an Auto Swap in azure using TFS

I'm using VSO to continuously deploy to azure. I have three slots : Staging ( for automated tests ) AutoSwap ( if the version passes the automated tests in staging, it's deployed to AutoSwap ) Production ( When AutoSwap is deployed, it will auto…
yeska
  • 619
  • 1
  • 8
  • 23
1
vote
3 answers

Azure Service Fabric - continuous integration on VSTS

Is it possible to setup Continuous Integration on VSTS without using external VM as build agent (https://azure.microsoft.com/en-us/documentation/articles/service-fabric-set-up-continuous-integration/)? What I would like to achieve is to have one…
1
vote
1 answer

Continues deployment not working properly with github private repository

Azure continues deployment not working properly with github private repository. I am using Azure deploy button method. Error: Response status code does not indicate success: 404 (Not Found) README.MD
Jatin Gadhiya
  • 1,955
  • 5
  • 23
  • 42
1
vote
1 answer

In CircleCI, how do I check whether a project branch is currently green?

How do I check in CircleCI if a project branch is currently green (has no failures)? I have looked at https://circleci.com/docs/api under Recent Builds For a Single Project and the "status" field, but when I try, say, curl…
rocky
  • 7,226
  • 3
  • 33
  • 74
1
vote
1 answer

Node.js error in Azure build

I have created a brand new ASP.NET 5 project from Visual Studio 2015 Community Edition. I check the code into a repository on BitBucket here: https://bitbucket.org/admin_at_scanburapps/sandbox-repo I create a new Web App on Azure and setup…
Nikola Schou
  • 2,386
  • 3
  • 23
  • 47
1
vote
0 answers

Travis, how to deploy with ssh?

I'm using Travis CI pointing to my master branch on a GitHub repository. Travis is working fine so far for running tests but I still need to manually deploy the code after the code has successfully finished. I would like to automate this process…
1
vote
0 answers

GitLab CI keeps using docker while shell runner is specified

EDIT: After modifying the configuration file and keep trying and trying, I finally decided to just purge GitLab runner and reinstall it again. After reinstall and do the registration, everyting works fine. I tried to create an automatic deployment…
1
vote
2 answers

Continuous Deployment Approach for on premiss Asp.Net-MVC

Remote customer's policies don't allow for me to publish from my dev environment directly to their server. I remote into environment and copy the published artifacts (Asp.Net-MVC) to the test environment. Deployment process between the different…
1
vote
0 answers

Validation multiple OS support

I develop java agent that is about to be deployed on all possible Application Servers on different Operation Systems with multiple java versions. I want to validate that my application will work properly on all possible permutations of the…
1
vote
0 answers

How to configure Travis CI better for auto push to git branch?

I'm developing a project at GitHub and using TravisCI. On GitHub, there's an option, which allows one to use one branch gh-pages to publish static web content online on http://.github.io/. As my project is a frontend one…
1
vote
1 answer

Continuous Delivery on Wordpress using Docker

I have had this problem very often in the past: I have a wordpress site that is in production. I deployed the site manually from my local machine. So if there were changes, I exported the database and the files from the local file system again and…
Marcel
  • 1,537
  • 5
  • 19
  • 38
1
vote
0 answers

GitHub Azure Continuous Deployment Failing with Nuget Timeout

I have a project that works perfectly on my local machine. I am now trying to set to deploy via Continuous Deployment with Azure. I am using free Azure Websites tier and have pointed it at my GitHub repo. It finds the repo without issues and tries…
GraemeMiller
  • 11,973
  • 8
  • 57
  • 111
1
vote
2 answers

Automatically push gem to RubyGems.org from a Continuous Integration server

I have a Continuous Integration / Continuous Deployment scenario where I want my build script to push a ruby gem directly from a public Build Server (teamcity.codebetter.com) to RubyGems.org. The problem is: How can I specify my credentials? On my…
1
vote
2 answers

Is there a tool to keep track of manual steps in a CI or CD process?

I'm looking for a tool of some kind that i can integrate into our CI process to keep track of the manual steps we have. As an example, we want to run through some manual test scripts on the integration server before pushing the version to the test…
1
vote
1 answer

How to setup continuous integration - deployment: bitbucket, drone.io, docker hub, swarm?

I'm thinking of how to setup continuous integration and deployment using bitbucket, drone.io, hub.docker.com and swarm(aws ec2) cluster? I submit code to bitbucket bitbucket's web hook triggers drone.io and it builds and runs tests On every "green"…