Automated code deployment to multiple servers.
Questions tagged [automated-deploy]
126 questions
0
votes
2 answers
CruiseControl.net with multiple languages?
I just started working in an environment that uses multiple programming languages, doesn't have source control and doesn't have automated deploys.
I am interested in recommending VSS for source control and using CruiseControl.net for automated…

Abe Miessler
- 82,532
- 99
- 305
- 486
0
votes
1 answer
Remote `docker-compose build`: workaround slow connections
I'm using docker-compose to deploy into a remote host. This is what my config looks like:
# stacks/web.yml
version: '2'
services:
postgres:
image: postgres:9.6
restart: always
volumes:
- db:/var/lib/postgresql/data
redis:
…

ichigolas
- 7,595
- 27
- 50
0
votes
1 answer
How can I copy artifacts from a agent on teamcity to my local machine when the build runs on that agent
I am working to automate the deployment process of my product for which I need to copy .exe and .varfile to my local machine from an agent on TeamCity on which the build takes place.I am trying to do it by writing scripts in maven pom.xml. I know…

Shivank Garg
- 1
- 2
0
votes
1 answer
iOS Create .h file by script, build and upload automatically
Every time, when I want to upload to App Store or hockey, I need to make sure my project setting are correct or not. I need to change in Common.h for which server I want to connect.
#define ENV_DEV 0x1
#define ENV_STAGING 0x1 << 1
#define…

Khant Thu Linn
- 5,905
- 7
- 52
- 120
0
votes
1 answer
How do you trigger a build when you check in code using VSO and visual studio 2013?
I am developing using Visual Studio 2013 with Visual Studio Online for source control. I want to prevent check-in if the build that is triggered is returned false. Using the steps below, don't see how the builds are happening and not sure how to…

Chaka
- 1,709
- 11
- 33
- 58
0
votes
1 answer
Automatically create a build in Xcode and send it to Dropbox or a server when I commit
My goal is to allow my co-workers to test an app without having to send multiple emails; instead they can just go to Dropbox or a server and test it out themselves. I need some references/sources that can lead me to the results I want.
I am not 100…
0
votes
2 answers
Vlad the deployer on Dreamhost - initial script
I'm trying to deploy an app with SVN and Vlad the deployer.
Vlad and its dependencies are installed and seem OK.
I'm trying the following:
rake prod vlad:update
Being my config/deploy.rb file:
task :prod do
set :application, "xxx"
set…

xmar
- 1,729
- 20
- 48
0
votes
1 answer
Visual Studio Online Automated Build Failing on Nuget Packages On Some Projects but not all
For some reason one of my projects is not building when I build. The advice that I keep getting on every page I look at tells me that I should "Enable Nuget Package Restore" for my solution. I have already done this, but it doesn't seem to be…

Jhayes2118
- 842
- 1
- 8
- 18
0
votes
1 answer
Rails app, Continuous Integration/Deployment Environments
When developing, my team obviously uses development as our environment.
When we run automated tests, we use testing.
We also have staging and production environments, respectively used for our testers to check out features and the final "live"…

Dan L
- 4,319
- 5
- 41
- 74
0
votes
1 answer
.NET Deployment Framework
Many people use Nant or Powershell for deployment of their apps to different servers/environments.
These are based on scripting while some solutions allow deployment to be embedded in code like Migrator.Net and other Ruby inspired Db…

Khash
- 2,500
- 4
- 30
- 56
0
votes
0 answers
What is the best way to automate deployments windows service and desktop apps
At the moment we are using teamcity for continuous builds.
We need deploying windows services as well as desktop apps into citrix environment.
Thing specific to our setup is many production environments with different versions and configurations…

Marek
- 2,419
- 6
- 34
- 38
0
votes
1 answer
Choosing specific Environment to build using Apache ANT
This might seem a trivial question, but I have Googled for about 1 hour and not found an answer that directly addresses it, so here goes:
Stack:
Java
Tomcat7
MySQL
OpenDS
Development Environment
IntelliJ IDEA (personal)
- Some of our developers…

Chad Kemp
- 139
- 1
- 1
- 9
0
votes
2 answers
Create Azure Cache Programmatically
I am creating an application that automate the deployment to Azure Web Sites. I was able to create Azure Web Site, database and storage programmatically but I didn't saw any library out there that can create Azure Cache programmtically. Anyone?…

Abz Abz
- 67
- 9
0
votes
1 answer
Can I Override WebDeploy archive paths through TFS Build?
My team is starting to take on the challenge of automating our Build-Deploy-Test process, beginning with the build.
Right now we have Build Definitions configured in TFS that will publish our site to our servers using Web Deploy, and this is…

bwerks
- 8,651
- 14
- 68
- 100
0
votes
2 answers
Application not installed when i try to autoupdate
I have an auto update on my app that update itself, I launch the activity that way:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("file://"+ruta+"NameApp.apk"),…

D4rWiNS
- 2,585
- 5
- 32
- 54