Questions tagged [automated-deployment]

65 questions
2
votes
1 answer

Build and deploy system for PHP and asp.net mvc websites via SVN

I'm looking for some guidelines on what would be a best practice build system to allow automated deploys from subversion code to remote websites. Currently I run a test and production branch for each environment for 3 apps: PHP application ASP.NET…
DaveO
  • 1,909
  • 4
  • 33
  • 63
1
vote
1 answer

How do you call another ant target with parameters (-logger org.apache.tools.ant.listener.MailLogger) from another ant script?

I have a main ant script, that is used to initiate multiple project's ant script, in a certain sequence. For each sub-project, I would like to to send out an email, notifying me whether the build was successful or not. I understand that I can use…
1
vote
0 answers

unauthorized: authentication required (Failed to get dockerfile path for image...)

I have a github workflow pipeline that builds and deploys an image to Azure Kubernetes Cluster. The workflow runs and shows that the build and deploy is successful but when I expand the steps in the deploy build job I get this error at the level of…
1
vote
1 answer

nexrender jsx scripting image

I'm using nexrender package to automate after effects template & data driven video based. in AE program I have 2 images. 1 image with a blending mode (stroke-png.png), the second image gets the effect and mask into. as you can see here when I edit…
Manspof
  • 598
  • 26
  • 81
  • 173
1
vote
1 answer

Appcenter Android Build for React-Native with Unity

I am working on a React-Native project using Unity (asmadsen/react-native-unity-view). The code is working properly on both Android and iOS and build is also being generated for both the platforms respectively. But now I am trying to make the build…
1
vote
1 answer

How can I update an existing file in a github repo with python without cloning the repo down?

hope you can help me with this one.. A simple example will do.. I have a Mule project in a github repo and I need to update the pom.xml automatically.. I know could "mimic" what we humans do with python3 by cloning the repo down, update the file and…
Santos
  • 177
  • 1
  • 1
  • 15
1
vote
1 answer

Microsoft Database Project - How to change column type and avoid data loss error

I am trying to change the type of a column from VARCHAR to INT. During the deployment, the database project will stop the deployment due to the "data loss" error: RAISERROR (N'Rows were detected. The schema update is terminating because data loss…
1
vote
1 answer

What types of architecture or architecture layers are not suitable for automated testing?

I was recently tasked with developing automated build and release pipelines for one of my company's legacy applications. After some investigation, I keep hearing from managers and other devs that certain application layers and architectures don't…
1
vote
2 answers

Programmatically add application setting to azure functions

I need to programmatically add new application settings to azure functions without having to add it manually from the azure portal every time I introduce a new setting. Is there any nuget package or some tool which i can use to automate this? The…
1
vote
1 answer

Orchestrate Sitecore deployments using Jenkins

We use Sitecore for our application and until now builds and deployments are manual. We have now started to use Jenkins for the build, but yet to figure out how to do deployments. The deployments are currently done by packaging using TDS and then…
Ashley
  • 1,447
  • 3
  • 26
  • 52
1
vote
1 answer

Azure Function Deployment failing because function.json is wrong

When I deploy an Azure Function from Visual Studio, the function.json file is always incorrect. An example of the function.json file is the following for a queue triggered function: { "generatedBy": "Microsoft.NET.Sdk.Functions-1.0.12", …
1
vote
1 answer

Email & report with task scheduler

I am currently running my test scripts using a batch file & MS task scheduler. However, I would like to have an email sent out to our product team when the test has completed. Email would include a snapshot of the robot framework test report. Is…
scttech
  • 107
  • 3
  • 12
1
vote
2 answers

Security of a self-updating web app

What are the security concerns of the following scenario? (this is one of those crazy ideas that someone will try, and maybe a it's a good idea, and maybe it's a terrible idea...) You have Rails app at example.com, and an action at…
jefflunt
  • 33,527
  • 7
  • 88
  • 126
1
vote
2 answers

Jenkins: Fetching the value of a JSON Extended Choice Parameter

I'm trying to use Extended Choice Parameter in my jenkins project - with the JSON option. I've built a very nice JSON parameter "DestinationEnvironment", and I'm trying to get one of the its properties "DestinationServer" for the build step, but I'm…
1
vote
1 answer

Script for merging dev mysql database to deployment mysql database for Django app

I am working on a Django app and have now reached the point of setting up my deployment process. I would like to automate this as much as possible and as such am looking for any help I can get in terms of database management. As I see it, this is…