зеркало из https://github.com/dotnet/pinvoke.git
34 строки
765 B
YAML
34 строки
765 B
YAML
trigger:
|
|
batch: true
|
|
branches:
|
|
include:
|
|
- main
|
|
- 'validate/*'
|
|
paths:
|
|
exclude:
|
|
- doc/
|
|
- '*.md'
|
|
- .vscode/
|
|
- .github/
|
|
- azure-pipelines/release.yml
|
|
|
|
parameters:
|
|
- name: RunTests
|
|
displayName: Run tests
|
|
type: boolean
|
|
default: true
|
|
|
|
variables:
|
|
TreatWarningsAsErrors: true
|
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
|
BuildConfiguration: Release
|
|
codecov_token: 4dc9e7e2-6b01-4932-a180-847b52b43d35 # Get a new one from https://codecov.io/
|
|
ci_feed: https://pkgs.dev.azure.com/andrewarnott/OSS/_packaging/PublicCI/nuget/v3/index.json
|
|
NUGET_PACKAGES: $(Agent.TempDirectory)/.nuget/packages/
|
|
GeneratePInvokesTxt: true
|
|
|
|
jobs:
|
|
- template: azure-pipelines/build.yml
|
|
parameters:
|
|
RunTests: ${{ parameters.RunTests }}
|