diff --git a/azure-pipelines-msdata-aot.yml b/azure-pipelines-msdata-aot.yml new file mode 100644 index 0000000000..f2f43d1971 --- /dev/null +++ b/azure-pipelines-msdata-aot.yml @@ -0,0 +1,30 @@ +# A pipeline with no CI trigger +trigger: none + +pr: none + + +variables: + DebugArguments: ' --filter "TestCategory!=Flaky & TestCategory!=Quarantine & TestCategory!=Functional" --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/static-tools.yml + parameters: + BuildConfiguration: Release + VmImage: $(VmImage) + +- template: templates/build-internal.yml + parameters: + BuildConfiguration: Release + Arguments: $(ReleaseArguments) + VmImage: $(VmImage) + +- template: templates/nuget-pack.yml + parameters: + BuildConfiguration: Release + VmImage: $(VmImage) + ReleasePackage: true + OutputPath: '$(Build.ArtifactStagingDirectory)/bin/AnyCPU/Release/Microsoft.Azure.Cosmos' + BlobVersion: 'aot/$(BlobVersion)' \ No newline at end of file