kinect/codes/Azure-Kinect-Samples/azure-pipelines.yml

29 lines
570 B
YAML
Raw Normal View History

2024-03-06 18:05:53 +00:00
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
trigger:
- master
pool:
vmImage: 'windows-2019'
variables:
solution: '**/*.sln'
steps:
- task: NuGetToolInstaller@0
# NuGet Restore Task
- task: 333b11bd-d341-40d9-afcf-b32d5ce6f23b@2
inputs:
restoreSolution: '$(solution)'
# The build output exceeds the maximum size of build machine.
# Temporarily disable the auto build check until we figure out a way to prune the build results.
#- task: VSBuild@1
# inputs:
# solution: '$(solution)'
- task: VSTest@2