Part 42: Run pipeline using Self Hosted Agent | Azure DevOps

preview_player
Показать описание
Hey Everyone,

In the last video, we registered the self-hosted agent for our pipeline. In this video, I'll run a pipeline using a self-hosted agent. Also, we will explore the work folder that we have configured while registering our agent.

Updated Yaml File:
# ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:

trigger:
- master

pool:
name: Default

variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'

steps:

inputs:
restoreSolution: '$(solution)'

name: 'BuildApp'
inputs:
command: build
projects: '**/*.csproj'
arguments: '--configuration $(buildConfiguration)'
Рекомендации по теме
Комментарии
Автор

your videos is small but the contect is Very Good😍 keep it bro

manikanthadommeti
Автор

hi bro u explanation is so gooood keep the more videos this type of bro

manikanthadommeti
Автор

How to copy the artifact created in self hosted to devops artifact location?

TechnoSparkBigData