Questions tagged [azure-devops-self-hosted-agent]

291 questions
0
votes
1 answer

Azure DevOps Multiple Release Pipelines

Is it possible to create a master release pipeline that will trigger sub pipelines in Azure DevOps? We are working on Deploying some packages to EC2 Server using vsts Agent and call batch scripts. Currently we are creating pipeline for each package.…
0
votes
2 answers

Copy deployment result from an Azure Mac hosted agent to a private Windows agent

In Azure DevOps I have a release definition that executes the command productbuild --component $(System.DefaultWorkingDirectory)/$(RELEASE.PRIMARYARTIFACTSOURCEALIAS)/My/Folder.app/ /Applications My.pkg to create a new pkg file starting from the…
0
votes
1 answer

How to find Agend Pools settings in Azure DevOps

I am trying to set up Azure DevOps with one of my projects for the first time. Starting out, I've created a demo project for learning purposes. I've been able to set up a build pipeline, but I want to set up an agent pool with local agent pools. In…
Vivian River
  • 31,198
  • 62
  • 198
  • 313
0
votes
2 answers

deploying webapp in azure devops pipeline release w powershell / json templates - error - modal dialog box is not valid

#Using Azure DevOps pipeline release with a powershell script and a json template file and json parameter #file. Note-authenticating to the azure portal requires multi factor authentication (ie.authenticator on my mobile) #'ERROR- >>>>>…
0
votes
2 answers

Run a self-hosted agent in Docker

I am trying to run a self- hosted agent in docker, I have created the dockerfile and start.ps1 files and installed the Azure DevOps Server Express Admin console. I am getting a "Basic authentication requires a secure connection to the server " when…
0
votes
1 answer

Azure Self Hosted agent : A session for this agent already exists , when running more then 1 build agent

I have defined 1 agent called "ios_dockeragent" in agent pools configuration : Settings/Agent pools/Default In my Azure DevOps organization, I bought 4 Parallel jobs and 3 Parallel hosted jobs so I do not have a parallel jobs problem. From each…
0
votes
2 answers

How to build Visual Studio Installer Project in Azure Pipelines in Self-Hosted Windows Agent

The image above shows my Hello World project structure. I am trying to build the Setup-HelloWorld-x86.vdproj in Azure Pipeline in Self-Hosted Windows Agent (which is nothing but my local machine) by using the command line script task like shown in…
0
votes
1 answer

Trigger Azure DevOps Release pipeline Stage from Spinnaker

I have created Release pipeline in Azure DevOps. I'm doing deployment inside spinnaker. Once Deployment got success/fail, the deployment status report should be come to Release pipeline stage in Azure DevOps. How to achieve this? Is it possible with…
0
votes
2 answers

azure self hosted agent linux do not run with "--once" parameter

i like to run the self-hosted Linux container only once per pipeline that means when the pipeline is done i like the container to stop i saw that there is a parameter called "--once" please this link in the bottom…
0
votes
1 answer

Azure DevOps agent configuration successfully connects to the server, but then fails with "Error VS30063: You are not authorized to access..."

I have installed Azure DevOps agent on my laptop and am trying to configure it. It does connect to the Azure server, and I see it on the server appearing in the list of agents, but then config.cmd fails with error VS30063: PS C:\agent>…
Alex Karnovsky
  • 310
  • 2
  • 15
0
votes
1 answer

Azure build Agent

Situation: During the build process of an azure pipeline i use the JavaToolInstaller on a self hosted agent and it places "java/JAVA_HOME_8_x64_" in the directory Background: I dont believe this to be a permission issue when i have applied full…
0
votes
1 answer

Azure VMSS derregister with Azure Devops Deploymentgroup as needed

I have two scenarios where I'd have to deregister the VMs from Deployment Groups: 1) When a new VM is spun up, its added to a temp deployment group, updated with the latest code, then added to the main active DG where builds are released. 2) When…
0
votes
1 answer

PowerApps Tool Installer fails for self-hosted agents

I configured a self-hosted agent from which to do my Dynamics 365 app builds/deployments. However, I seem to be missing something, as the PowerApps Tool installer fails: Starting: PowerApps Tool Installer…
0
votes
0 answers

How do I access a junit test from inside a self-hosted-ubuntu docker container - running in an Azure Release pipeline

My problem: python/selenium test framework reporting on an azure pipeline - unable to access my self-hosted ubuntu container on the pipeline with any task I tried the following: I originally had a win2016-vs2017 container - which had a…
0
votes
1 answer

Consuming Package From Private Azure Artifacts In Azure DevOps Server

I am using Azure DevOps On-Prem (Version Dev17.M153.3) and I have 2 projects. Let's say the first one is 'A' and the second one is 'B' PS: I am using my own build agent. A project doesn't have any dependency. B project depends on A project. I made…