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

Automatically run tests when publishing from github to an azure website?

If I bind my azure website to TFS, I can configure the build to run the unit tests in the project. However, I can't seem to find a similar option when publishing from github. Am I missing something? My site publishes fine, but, based on the…
Alex Dresko
  • 5,179
  • 3
  • 37
  • 57
1
vote
2 answers

How to determine if slow-deployed application is deployed correctly?

I have a Jenkins project that builds an application and then, if successful, copies the application to our test-environment and restarts the Tomcat server. The Tomcat startup takes around 90 seconds. How can I automatically and / or programmatically…
pkhamre
  • 371
  • 1
  • 16
1
vote
1 answer

Jenkins prolem to copy a build file to a windows share

I am a newbie to Jenkins and I have finally created a successful build using Jenkins. I have installed the jenkins-CIFS publisher plugin to move this "jar" file from the original location to another windows server(server1). I have created the CIFS…
1
vote
1 answer

how can I set up a continuous deployment with TFSBuild for MVC app?

I have some questions around the best mechanism to deploy MVC web applications to different environments. Previously I used setup projects (.msi's) but as these have been discontinued in VS2012 I am looking to move to an alternative. Let me explain…
1
vote
1 answer

From where I can download Jenkins build-pipeline-plugin?

I am trying to find location from where I can download the latest release of Jenkins build pipeline plugin https://wiki.jenkins-ci.org/display/JENKINS/Build+Pipeline+Plugin but am unable to do so. I checkout out the code and build it on my system…
Shekhar
  • 5,771
  • 10
  • 42
  • 48
1
vote
3 answers

TFSPreview.com and Azure certificates not playing well at deployment

So I setup TFS continuous deployment and I'm running into a situation where my build compiles just alright but fails in the deployment phase when communicating with Azure. My log looks like Get Default Azure Cloud Service Publish Profile Set Project…
DeepSpace101
  • 13,110
  • 9
  • 77
  • 127
1
vote
1 answer

How to do continuous deployment - c++ on AWS

I have a source on a repository server. The application is running on an AWS instance. I could make a script that logs, makes the pull, compiles, and copies the new binary to it's destination. But how do I copy the new binary if the application is…
cauchi
  • 1,463
  • 2
  • 17
  • 45
1
vote
1 answer

How to implement continuous deployment with Nexus and Jenkins

I'm trying to implement a continuous deployment system and I seem to not be able to find a good answer for our problem. We use Jenkins to run a maven build to generate our artifacts and deploy them to Nexus. I see a few projects that bundle up…
user1442498
  • 305
  • 2
  • 10
1
vote
1 answer

Serving code and database all at once

I use fabric to upload to a server the new versions of my code, then it runs a couple of tasks to make it serve the new version instead of the old one. Among those tasks there's also a syncdb, but this means that there's a window where I have the…
Rik Poggi
  • 28,332
  • 6
  • 65
  • 82
1
vote
1 answer

Deployment automation on iOS?

Does anyone have experiance creating deployment automation using one consolidated tool to handle Java server side + iOS package files? Abelity to plugin into Continuous Integration engines like Hudson/TeamCity is a must. Also desirable is…
savinderpuri
  • 293
  • 1
  • 7
0
votes
1 answer

Which Continuous integration programs support a good workflow for Windows Phone 7

I'm a bit confused on how continuous integration works with a Windows Phone App. Is there a way to upload the app to the marketplace automatically, or do you still need to do a manual update? Do I need my own server for this, or are there hosted…
Bob
  • 1,605
  • 2
  • 18
  • 33
0
votes
1 answer

Remote deployment with Dropkick

I do lots of deployments in my everyday work. And it really hurts. Recently I came across the dropkick and it seems brilliant for me. But the most valuable feature I need - remote execution - is not documented enough. If someone had experienced…
0
votes
1 answer

Generate a distributable binary with dependency services

I have a java project where the result distribution needs two other services running: zookeeper and project voldemort. I would like to have a build process that outputs the right version of each project with an already valid configuration, so that…
0
votes
2 answers

Is starting with a dump necessary for source controlling a database driven application?

What are the pros and cons of using a dump-file as a basis of data and schema migration, as opposed to fully script based or a database delta tool? The context is that the application is in production, and there is only one production database. …
0
votes
2 answers

Can I use juju for continuous deployment on centos?

I want to verify that juju is not only for Ubuntu. I want to build a continuous deployment which would be as good as juju for centos. I have Java server apps. If anyone has any other suggestions please let me know.
Jas
  • 14,493
  • 27
  • 97
  • 148