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

Automating SSAS deployment using AMO

I am trying to automate the build and deployment of a number of tabular cubes on SQL Server 2012. At this point I can generate deployment artifacts (.asdatabase, .deploymentoptions and .deploymenttargets files), I can generate an XMLA using the…
1
vote
1 answer

Octopus Deploy: No package for the action 'xxxxxx' and machine 'Machine-Name' was acquired

I am starting to delve into Octopus Deploy and setting up my first deployment but I've ran into a bit of a snag. I have tried to be as specific as possible in lieu of finding someone who has experienced this same problem more recently. "This is not…
1
vote
1 answer

Azure Function / Azure Website Custom Deploy Script Ending Prematurely

I've got a custom batch deployment script for an Azure Function which is ending prematurely without erroring out. I'm hoping someone can help me understand what is going on. The problematic portion appears to be in the "Pre-deployment" section of…
1
vote
0 answers

How to setup Continuous Integration with Codeship (or Heroku)?

We host our web app source code on GitHub, and whenever something's pushed to the master branch, it's deployed to Heroku via CodeShip. Currently, we have two environments on Heroku: staging and production (we develop locally). I've created a test…
1
vote
2 answers

Azure Continuous deployment fails on Newtonsoft while VS publishing works

I added a new packages that required Newtonsoft.Json version >= 9.0.1 while so far I had 8.0.2. The solution builds and runs fine on VS. However, when I push the branch, the continuous deployment build on Azure fails. The type or namespace name…
François
  • 3,164
  • 25
  • 58
1
vote
2 answers

How can I use Jenkins to deploy a project that depends on another project on GIT?

I am absolutly new in Jenkins and I have the following problem. I have 2 jobs representing 2 different projects which are related to each other. In particular I have the following situation: I have a main project named main-project: this is a Java…
1
vote
1 answer

System.Management.Automation.RuntimeException: Not able to fetch token for given User

I am enabling Continuous Deployment of sql dacpac through release definition in Visual studio online. I have used Azure SQL Database Deployment step for DB deployment. But during the execution of the step I am getting below…
Abinash Panda
  • 343
  • 1
  • 2
  • 16
1
vote
1 answer

Control a container from another one

I have found a lot of articles which speaks about communication between docker containers (docker network, docker link). But i don't Know if it exists a good practice to control a container from another one, like run and stop a container. If the…
Pred05
  • 492
  • 1
  • 3
  • 13
1
vote
1 answer

Push image vs building on system itself, docker

I'm building many application that i want to be running on remote servers in docker containers. Imagine that i've made a project 'foo' and i've written Dockerfile for it. I build this image on my localhost and run it in container. Everything works…
1
vote
1 answer

Advantages/Disadvantages of Running Jenkins Slaves for Dev/Test/Prod?

Let's start by agreeing that we want to adhere to typical Docker/DevOps principles. Therefore, we want to keep tasks isolated, configurations versions controlled, and overall customization to a minimum. The Landscape: Jenkins is being used as the…
1
vote
1 answer

How to setup an account of VSTS(corporate) with an account of Azure(personal) to Continuous Deployment

I have an account which is bound to VSTS that is corporative, and an Azure account that is bound to the same email but as a personal account. VSTS Account: jonathan@company.com(Corporative account) Azure Account: jonathan@company.com(Personal…
1
vote
2 answers

bash script require which download latest version of the **war** (either snapshot or release ) file nexus repository in tomcat

I need a bash script which download latest version of the war (either snapshot or release ) file nexus repository in tomcat Please find me script. Need experts…
1
vote
1 answer

CircleCI: Trigger build when repository that is not mine changes

At CircleCI: Is it possible to trigger a build when a git repository that is not mine changes / gets a new tag?
Jonas Gröger
  • 1,558
  • 2
  • 21
  • 35
1
vote
1 answer

dotnet core deployment to azure app service using teamcity

I have a dotnet core app. I am building a pipeline in teamcity. and once the teamcity detects the change in the cource code, It downloads the source code runs dotnet restore dotnet build and copies the content in the output folder to Azure app…
1
vote
0 answers

Docker Registry - Industry Standards

I have been trying to find out if there are any industry standards for docker registry, i.e., how production and staging areas are defined, what version schema is followed etc., but haven't found any doc or blog. Are there any guidelines or best…