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
1 answer

WiX: Handling an alert during installation

I want to create a WiX package for a task scheduler. I am able to create the task while I install the package and during the uninstall from control panel am able to remove it successfully. But, when I try to install the upgraded version It gives an…
Vamshi G
  • 75
  • 1
  • 2
  • 9
1
vote
1 answer

Auto-append to bash script after GitLab Checkin

Community, without going through the process of setting up GitLab CI (Continuous Integration), do any of you know how I may automate a process as described below? After GitLab check-in, have the checked-in filename added to either a text file or…
1
vote
2 answers

Configure a local build plan with Harbormaster and Drydock

I'm trying to create a simple build plan using Harbormaster and Drydock: Whenever a commit is made the build plan Deployment should be triggered. This can be easily done with Harold. The build plan Deployment has some build steps which run a…
witrin
  • 3,701
  • 1
  • 24
  • 49
1
vote
1 answer

Automatic app deployment to Amazon store

I've got multiple Android apps that are currently distributed via Google Play and the Amazon store. My goal is to automate the app upload process to minimize the time required to upload a new update. I've already done that for Google Play by using…
davidgiga1993
  • 2,695
  • 18
  • 30
1
vote
1 answer

How to install a plugin on xl-release?

I have downloaded CA-LISA plugin from https://xebialabs.com/plugins/ and have received both .zip and .jar files. I am now stuck at installing the plugin. What are the steps to install the plugins manually ?
1
vote
1 answer

Triggering Jenkins to run application tests when GitHub PR is created

I am a noob to Jenkins, and I have a Jenkins server that runs an ansible playbook to deploy the app. I would like to be able to have Jenkins run an ansible playbook which runs application python tests when a GitHub pull request is opened. I would…
i_trope
  • 1,554
  • 2
  • 22
  • 42
1
vote
1 answer

Named entity recognition with a small data set (corpus)

I want to develop a Named entity recognition system in Persian language but we have a small NER tagged corpus for training ans test. Maybe In the future we'll have a better and bigger corpus. By the way I need a solution that get incrementally the…
1
vote
1 answer

Visual Studio Online continuous deploy ASP.NET web pages to Azure Websites without build

How can I continuous deploy an ASP.NET web pages project to Azure Websites(Web App) without building it by hosted build controller(provided by Visual Studio Online)? My project contains web pages and do not need to build in order to work. The web…
1
vote
1 answer

Azure continuous deployment from GitHub and database upgrades

I have a Web application that I usually deployed using Web Deploy directly from Visual Studio (whatever branch I am currently using in VS - normally master). But now I'm introducing a second web app on Azure that will be built from the same repo but…
Robert Koritnik
  • 103,639
  • 52
  • 277
  • 404
1
vote
1 answer

How do I do a push deploy with Rocketeer?

It seems the standard way to deploy with Rocketeer is to do a pull deploy, that is, it will do a git clone from the server you are deploying to. What I want to do is push a set of files after having done a build on a CI server to the server being…
bender
  • 3,586
  • 2
  • 21
  • 21
1
vote
1 answer

Java app deployment to heroku using Maven failed

I am trying to setup the Continuous deployment process for a Tomcat based java app using Github for source code hosting, TravisCI for building the WAR file, running the unit tests and then Heroku to deploy the packaged WAR file. I tried following…
1
vote
2 answers

Code Deploy DownloadBundle Error

I've had code deploy configured and working for a few weeks. It's setup so that it goes from our CI server on shippable to code deploy. We deploy like so (in a container): > pip install awscli aws deploy push --application-name $CD_APP_NAME >…
1
vote
0 answers

Implement PowerShell DSC with existing continuous Deployment Process

I am doing PowerShell DSC POC. I configured the Pull server and one client machine. It is working fine and I am very much happy about PowerShell DSC feature. Now I want to integrate this feature with our continuous Integration process. We are using…
1
vote
0 answers

Publishing to Azure Websites with GitHub with a single repository with multiple MVC Web Projects

I have a GitHub repository with a Visual Studio Solution with the following folder structure -- GitHub Repository Root Folder -- -- Visual Studio Solution Folder -- -- -- project-a.example.com Folder -- -- -- project-b.example.com Folder -- -- --…
1
vote
0 answers

How to use Couchbase 3.0+ for tests in Travis

I need to know how to make couchbase 3.0.+ work in a Travis context. I have been able to start a Couchbase 2.0 on a Travis context but the 3.0.+ does not seem to actually start (the service daemon on linux says it is started but netstat does not…