Skip to content

Commit 146679e

Browse files
committed
Initial pipeline commit
1 parent 2487283 commit 146679e

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

azure-pipelines-aot-msdata.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# A pipeline with no CI trigger
2+
trigger: none
3+
4+
pr:
5+
branches:
6+
include:
7+
- msdata/aot*
8+
paths:
9+
include:
10+
- '*'
11+
exclude:
12+
- '*.md'
13+
- 'docs/**/*'
14+
- 'Microsoft.Azure.Cosmos/contracts/**/*'
15+
16+
17+
variables:
18+
DebugArguments: ' --filter "TestCategory!=Flaky & TestCategory!=Quarantine & TestCategory!=Functional" --verbosity normal '
19+
ReleaseArguments: ' --filter "TestCategory!=Quarantine" --verbosity normal '
20+
VmImage: windows-latest # https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops
21+
22+
jobs:
23+
- template: templates/static-tools.yml
24+
parameters:
25+
BuildConfiguration: Release
26+
VmImage: $(VmImage)
27+
28+
- template: templates/build-internal.yml
29+
parameters:
30+
BuildConfiguration: Release
31+
Arguments: $(ReleaseArguments)
32+
VmImage: $(VmImage)

0 commit comments

Comments
 (0)