forked from Azure/azure-cosmos-dotnet-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
38 lines (30 loc) · 934 Bytes
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# A pipeline with no CI trigger
trigger: none
pr:
branches:
include:
- master
- releases/*
paths:
include:
- Microsoft.Azure.Cosmos/*
- NuGet.config
variables:
DebugArguments: ' --filter "TestCategory!=Quarantine & TestCategory!=Functional" --verbosity normal '
ReleaseArguments: ' --filter "TestCategory!=Quarantine & TestCategory!=Functional" --verbosity normal '
VmImage: vs2017-win2016 # https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops
jobs:
- template: templates/static-tools.yml
parameters:
BuildConfiguration: Release
VmImage: $(VmImage)
#- template: templates/build-test.yml
# parameters:
# BuildConfiguration: Debug
# Arguments: $(DebugArguments)
# VmImage: $(VmImage)
- template: templates/build-test.yml
parameters:
BuildConfiguration: Release
Arguments: $(ReleaseArguments)
VmImage: $(VmImage)