azure-cosmos-dotnet-v3/azure-pipelines-functional.yml

30 строки
707 B
YAML

# A pipeline with no CI trigger
trigger: none
pr:
branches:
include:
- master
- releases/*
paths:
include:
- Microsoft.Azure.Cosmos/*
- NuGet.config
exclude:
- '*.md'
- 'docs/**/*'
- 'Microsoft.Azure.Cosmos/contracts/**/*'
variables:
DebugArguments: ' --filter "TestCategory!=Quarantine" --verbosity normal '
ReleaseArguments: ' --filter "TestCategory!=Quarantine" --verbosity normal '
VmImage: windows-latest # https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops
jobs:
- template: templates/build-test.yml
parameters:
BuildConfiguration: Release
Arguments: $(ReleaseArguments)
VmImage: $(VmImage)