Azure DevOps
Azure DevOps is a cloud-based collaboration platform created by Microsoft that provides tools for managing source code, building and testing applications, and deploying applications to various environments. Developers can use various programming languages and tools such as Visual Studio and Visual Studio Code to interact with Azure DevOps. Here's an example of YAML code to create a build pipeline in Azure DevOps:
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
steps:
- task: DotNetCoreCLI@2
inputs:
command: 'build'
projects: '**/*.csproj'
arguments: '--configuration $(buildConfiguration)'
- task: DotNetCoreCLI@2
inputs:
command: 'test'
projects: '**/*Tests.csproj'
arguments: '--configuration $(buildConfiguration)'
No comments:
Post a Comment