A process whereby all code that is written for an application is immediately deployed into production.

learn more… | top users | synonyms

0
votes
0answers
8 views

Run screen and execute commands with Capistrano

Currently I'm able to run and re-attach to a screen session with Capistrano like so: run 'screen -mdS "server"' run 'screen -S "server"' But what I really want to do is something like this: run ...
2
votes
1answer
29 views

How do I get TeamCity to automatically merge a Git feature branch with master and fail the build in case of merge conflicts?

Our development/release cycle works like this: Developer creates a feature branch, implements a feature Developer indicates feature is ready for acceptance testing (UAT) Tester deploys feature ...
0
votes
1answer
13 views

Download build drop from hosted Team Foundation Service

Using the hosted Team Foundation Service at tfs.visualstudio.com, one has the option in a Build Definition to "Copy build output to the server" which creates a zip of the drop folder that can be ...
1
vote
0answers
23 views

How do I perform RavenDB index changes in Blue-Green deployment scenario with high availability?

Context I am trying to design a stable, consistent approach to updating RavenDB indexes in production I am focusing specifically on the index update story (i.e. I know my setup doesn't fully address ...
0
votes
1answer
29 views

Is there a Jenkins build parameter for artifacts?

I would like to refer to the artifact URL in a deploy job I'm creating. How can I do that? For example - when I select a build from the Build History I get to the build page. If I right click on a ...
-1
votes
0answers
45 views

Continuous Integration vs Continuous Delivery vs Continuous Deployment: [closed]

What are the differences between Continuous Integration, Continuous Delivery and Continuous Deployment and how should I implement each using TFS 2010?
0
votes
0answers
92 views

How do I fix Azure Websites to stop confusing .Net Framework 4.5 with 4?

I am using Visual Studio 2012 to publish a simple Asp.Net MVC 4 project using Continuous Publishing in TFS online and I am getting the error: 1 error(s), 0 warning(s) Exception Message: The ...
0
votes
1answer
39 views

Branch does not exist

the command git branch --set-upstream-to develop origin/develop results in the error fatal: branch 'origin/develop' does not exist I am not sure what this means other than origin develop does ...
0
votes
1answer
14 views

_CleanGetCurrentAndPriorFileWrites Failing on Teamcity

I have an azure web worker that I am trying to deploy via teamcity. Deploying other web workers projects are no problem on the build server. The project deploys fine from within visual studio. When I ...
0
votes
1answer
45 views

Database deployment as part of azure continuous deployment

I am using Azure integration with tfs.visualstudio.com for automated deployment after every checkin. As part of my solution, i have a database project (VS 2012) which i want to deploy on sql azure ...
0
votes
0answers
139 views

Enabling TFS continuous deployment for a web deply publish profile

I have an Asp.net MVC 4 project in which I had set up a visual studio publishing profile to use web deploy to deploy the application to a testing server. This all works great and was step 1 of what I ...
5
votes
2answers
199 views

How to implement continous deployment for a web service

I have a Java application, which runs inside web container (Jetty at the moment) and responds to requests via web services. Now I want to create a mechanism, which allows to deploy (transfer the WAR ...
0
votes
1answer
186 views

Build Pipeline with Jenkins - M2 Release -> Deployment to JBoss AS

I am using Jenkins as CI environment and I want to have the ability to deploy the build artifacts directly to a JBoss AS 7.1.1 server. For releasing the Maven artifacts I am using the Jenkins M2 ...
1
vote
1answer
44 views

Deploy database project without knowledge of target database

I've got a question. I'm used to using Teamcity + Database project which was able to deploy the database to all of the DTAP servers. I loved the way that worked - it allowed me to deploy to production ...
0
votes
1answer
120 views

How to deploy and run Play! 2.1 to EC2 via Jenkins

I have setup Jenkins for my Play! 2.1 I have setup Build and Deploy jobs, they work well. But I seem to cannot figure out how to deploy and run Play! from Jenkins to EC2. For example, I used this ...
0
votes
3answers
141 views

Levels of continuous integration

In a recent interview, I was asked about the level of Continuous Integration practiced in our company. When I started describing what we did, the interviewer interjected and asked me the level number ...
1
vote
6answers
175 views

code deployments on EC2

There are quite a few resources on deployments of AMI's on EC2. But are there any solutions to incremental code updates to a PHP/Java based website? Suppose I have 10 EC2 instances all running PHP / ...
1
vote
3answers
72 views

Continuous Deployment / Delivery And Security

I know this is vague question but I'm looking for blogs or information regarding how teams are integrating security with continuous delivery / deployment. We are deploying to AWS multiple times per ...
0
votes
0answers
59 views

Chrome Extension Constant Deployment

Since Chrome Extensions can't really be privately hosted using a .crx file and so being forced to use the Chrome Web Store, it's become quite a tedious manual process to upload and update an ...
4
votes
1answer
287 views

Deploy to Google Play Store via API

I'm a big fan of continuous integration / deployment and we build our Android apps with Jenkins and deploy every build from specific branches (mostly git flow's develop branch) to our testers via ...
3
votes
3answers
226 views

Whats the purpose of a Artifact Repository(Nexus, Artifactory) when you use Jenkins?

Wherever you read stuff about Continuous Delivery or Continuous Integrationits recommended to use a Artifact Reposity for storing the artifacts there. But Jenkins stores all artifacts to each build. ...
1
vote
1answer
637 views

Running a remote batch file using psexec through Jenkins fails

... Running the same batch file using psexec from the slave directly works without a charm. Let me provide some more information. Jenkins and its slave are in a separate domain than our target ...
0
votes
1answer
102 views

50k static html pages to generate on .net MVC website - how does this work with continuous deployment?

Here's the situation. Our website has about 50,000 "detail" pages, each made up of a number of chunks of data from our database and APIs. Currently these are dynamic, but the data only needs to ...
1
vote
1answer
289 views

Continuous deployment with multiple website projects in solution

We are using VS2012 and have a solution with 4 website projects in it. We have added the following MSBuild arguments to our Continuous Integration msbuild arguments: /p:DeployOnBuild=True ...
1
vote
1answer
287 views

CI and Deployment with TFS and Powershell

I am working on a CI process with automated deployment. TFS Build is building the solution, and it then uses an InvokeProcess task to kick off a Powershell script. The Powershell script deploys the ...
2
votes
1answer
211 views

How to upload an APK from Jenkins/Hudson to Play Store?

I implemented a continuous integration pipeline using Jenkins, but as final step I want Jenkins to deploy/upload the signed APK file to Google Play Store and AndroidPit. I looked for Jenkins/Hudson ...
1
vote
1answer
90 views

Maven Mercurial based Continuous Release process

I want some "Maven with Mercurial release" knowledgeable opinion. I already saw this thread and a few others. We want to be agile and fast. We want to build once. Not one build for testing and one ...
7
votes
3answers
920 views

How do you abort/end a Chef run?

Under certain conditions, I need to abort/end a Chef run with a non-zero status code, that will then propagate back through our deployment chain and eventually to Jenkins resulting in a big, fat red ...
1
vote
1answer
117 views

Rollback for Production deployment

Im about to automate the deployment to a test-server and to the production. I have a ci-server (build, compile, junit) and a artifact repository manager (stores the builds to deploy/publish). ...
1
vote
2answers
333 views

Can I coordinate rollback of Chef's deploy resource across multiple servers?

I'm moving from Capistrano to Chef to deploy a Rails app (with deploy_revision), and an issue of best practice (or common practice) is unclear to me. I haven't found much through Googling around. ...
0
votes
0answers
73 views

automated deployment on production with puppet

I would like to know how automated deployment to production works with puppet. Do I need a puppet-slave on my production server? If thats the case, is that insecure and what rights do puppet get ...
0
votes
1answer
195 views

Client side web stack with CoffeeScript, Compass & goodies

Is there such thing as (backend) language agnostic web stack that does something like: watches & compiles your CoffeeScript files watches & compiles your Compass / Sass files supports client ...
2
votes
2answers
683 views

How can I stop Chef from deploying code with failing tests?

I've been ramping up on Chef over the last week and preparing (emotionally and operationally) to cease our use of Capistrano. (We're hosting a Rails app.) We follow the GitHub flow, meaning we just ...
0
votes
1answer
284 views

Not include certain folders in a continuous deployment with TFS (Skip Command?)

Using Team Foundation Server continuous deployment with Web Depoly, is it possible to stop certain folders being deployed? And if it is, how? UPDATE You can't specify a skip rule via the command ...
-1
votes
1answer
62 views

Hudson: Mechanism for performing database updates

We are planning to automate the build system using Hudson. We are new to Hudson or it would be better to say this way that we are new to build automation process. Our application is on Java platform ...
0
votes
2answers
578 views

how do I download the latest artifact from artifactory? [closed]

I need the latest artifact(f.e. a snapshot) from a repository in Artifactory. This artifact needs to be copied to a server (linux) via a script. What are the options? Something like wget / scp? And ...
10
votes
2answers
2k views

continuous deployment with jenkins

I want to deploy with jenkins to the test environment and to the production environment. To do so I need to connect to the server of the wanted environment, something like ssh/scp. I would like to ...
0
votes
1answer
44 views

Can I change the configuration of a war package?

I have a project that i test, compile and build the war-package for it at my developer-environment. Now I need this package at the test-environment, for which the package needs/has an other ...
1
vote
2answers
72 views

Point of Artifact Repositories For Internal Code

Imagine for a cloud based solution, a good portion of the deployed code is developed internally. My question is what is the point of using an Artifact Repository for internal code where you could ...
2
votes
0answers
92 views

Continuous deployment/integration on Heroku for Java web app

I have a Java web application that I have managed to successfully deploy and get running on Heroku using the 'git push heroku master' method, but I would like to automate deployment and have a full CI ...
-1
votes
3answers
122 views

How to add exsiting project to git bare repository?

I am trying to setup git for automatic deployment. Here is what I am doing.. I have created one empty bare repository on my repos server which hosted on xyz.com. Then in eclipse using EGit I have ...
2
votes
2answers
463 views

continuous delivery with puppet and artifactory

I have Jenkins, Artifactory and 3 environments (development, test and production). When a developer commits something from the development-environment it's compiled and tested in the ...
0
votes
2answers
314 views

Jenkins xcode plugin - how to resolve library search path issues?

I am running into this error in my jenkins xcode build which I'm attempting to setup: clang: error: no such file or directory: ...
2
votes
1answer
42 views

How do I filter objects to be compared using VSDBCMD

I'm trying to automate my deployment and I've be trying to use the VSDBCMD command line tool to compare schemas of my development and staging databases. I can get it to work comparing everything but ...
5
votes
1answer
352 views

TFS Continuous Deployment for Windows Service?

I have managed to do Continuous deployment for my Web project using TFS Msbuild. I have goggled for few hours but couldn't find a relative link to achieve Continuous Deployment for windows service. ...
0
votes
0answers
34 views

Auto deployment solution for Windows Server

I've 2 servers, one private and one public. Private server is for the CMS and the public server is for the main website. Both servers has connection to a database server. Now I have this scenario ...
0
votes
2answers
97 views

Source Code Structure for Multiple Projects

Background: 3-5 programmers working with TFS. We support legacy apps as well as build new apps. I am implementing elements of continuous delivery and I want to have a good structure to start with. ...
1
vote
1answer
143 views

Bringing C# application under assembly version and using it to create patches and manage them

We have a C# desktop application which we run for clients on various servers on a software as a service model. We are still on dot net framework 2. The software has a architecture in which we have an ...
0
votes
1answer
218 views

TFS2010 msbuild msdeploy Unauthorized Error

Appreciate any guidance or advice on below issue I am using TFS2010 and below msbuild parameters in order to deploy build on staging server (continous deployment). I have done all necessery ...
0
votes
1answer
71 views

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? ...

1 2 3