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

How To Assign A Different Machine/Server As Build Agent In TeamCity?

I'm just wondering on how to assign a different machine/server as a build agent in TeamCity. Any help will be greatly appreciated :)
1
vote
1 answer

Go CD Trigger User always gets value of 'changes' in multi-staged pipelines

We are using Go CD for our CI pipelines. We have created multiple Go CD users and all of them have access to trigger any pipeline in Go CD. We use multiple pipelines for completing the dev-to-prod cycle, however, we noticed that we can achieve the…
Furhan S.
  • 1,494
  • 2
  • 13
  • 22
1
vote
0 answers

Task VSBuild failed. This caused the job to fail

I am getting following error while Automating my build. I am using Visual Studio Team Services (was VSO) and Visual Studio 2015. [error]System.Exception: Task VSBuild failed. This caused the job to fail. Look at the logs for the task for more…
1
vote
2 answers

Jekyll & Wercker - How to deploy a subdirectory

Problem: I am having difficulty deploying the Jekyll build folder to an FTP server via Wercker. I've been using Wercker for continuos integration of a Jekyll site I'm working on. Using the script below, The build process: jekyll build and jekyll…
1
vote
5 answers

how to deploy with git without including sensitive data in history

there is a way to manage my deployments and development workflow with git but without including sensitive data in the history (example database, secret tokens and so on..)? I need to have more branch (ex master, staging and production?) I ask this…
1
vote
1 answer

Continuous Deployment Bluemix with existing Bitbucket repo

I'm experiencing an issue with Bluemix DevOps continuous integration system when it comes to linking the project to an existing private Bitbucket repository. I tried the steps presented in this link and although I'm able to see the content of the…
Luca
  • 45
  • 6
1
vote
1 answer

Kudu Deployment Script for ASP.NET Core 1.0

I'm developing a ASP.NET Core 1.0 application using Visual Studio Code and I can't/won't use the built-in publishing tools in Visual Studio IDE. I have this working for ASP.NET 5 RC1 (dnx-clr-win-x86.1.0.0-rc1-update1) but I don't know how to update…
mikeesouth
  • 1,610
  • 1
  • 19
  • 34
1
vote
2 answers

Deploy postgres via jenkins - continuous integration/deployment

I got my database dump (tables, functions, triggers etc) in *.sql files. At this moment I am deploying them via jenkins, by passing execute shell command: sudo -u postgres psql -d my_db < /[path_to_my_file].sql The problem is, that if something is…
1
vote
0 answers

Single Responsibility Principle in Jenkins Blue-Green Deployment

I want to build a kind of Blue-Green Deployment using Jenkins' Pipeline. It should call separate jobs to fulfill the whole process. Assuming I got two servers available for a loadbalancer: web1 and web2. My idea is to implement following…
1
vote
1 answer

Managing several maven artifacts in a delivery pipeline

This is not a programming question by but a delivery pipeline question: Our product is built of several maven artifacts, which release SNAPSHOTS (2.0.1-SNAPSHOT) on a daily basis and release versions (2.0.1) on a weekly basis. During development,…
orepor
  • 905
  • 2
  • 13
  • 23
1
vote
1 answer

AppVeyor - Deploy only when is a tag in an specific branch

I'm trying to configure my appveyor.yml to deploy only when is a tag (annotated tag) in an specific branch. This is a fragment of my appveyor.yml: - provider: WebDeploy .... on: branch: appveyor-integration appveyor_repo_tag:…
1
vote
1 answer

Auto install setup in virtual machine

I have a build system, it makes me the build of my c# software, and then runs a build to make my setup and deploys it into a repository. Now, what I need is, after this deployment, I need this setup installed on a virtual machine or sandbox. How can…
1
vote
0 answers

Deployment automation tools for .NET code

My team at my work place is looking to move into Continuous Deployment and I have been asked to find a tool to help in the process. I am fairly new to this area and don't know much about Continuous Deployment tools. Can someone suggest some tools…
Nakul Shukla
  • 173
  • 1
  • 1
  • 6
1
vote
1 answer

TeamCity continuous integration with git deployment, PHPUnit tests and database migration

I'm trying to setup a TeamCity continuous integration and deployment workflow with a Laravel application using Git for version control but the way I've managed to do it feels hacky. What I have right now is a TeamCity build with a trigger of a push…
1
vote
1 answer

How to exclude .cs files during checkout in Jenkins?

Is there any way to exclude .cs files while checkout from SVN in jenkins? I need to fetch only the files needed for release not all the files used in development. So the workspace should contains only the design files and dll.