29 lines
719 B
YAML
29 lines
719 B
YAML
trigger:
|
|
- master
|
|
- release/*
|
|
|
|
# See https://github.com/aspnet/BuildTools
|
|
resources:
|
|
repositories:
|
|
- repository: buildtools
|
|
type: github
|
|
endpoint: DotNet-Bot GitHub Connection
|
|
name: aspnet/BuildTools
|
|
ref: refs/heads/release/2.1
|
|
|
|
phases:
|
|
- template: .vsts-pipelines/templates/project-ci.yml@buildtools
|
|
parameters:
|
|
buildArgs: "/t:CheckUniverse"
|
|
- phase: DataProtection
|
|
queue: Hosted VS2017
|
|
steps:
|
|
- script: src/DataProtection/build.cmd -ci
|
|
displayName: Run src/DataProtection/build.cmd
|
|
- task: PublishTestResults@2
|
|
displayName: Publish test results
|
|
condition: always()
|
|
inputs:
|
|
testRunner: vstest
|
|
testResultsFiles: 'src/DataProtection/artifacts/logs/**/*.trx'
|