aspnetcore/.azure/pipelines/ci.yml

29 lines
763 B
YAML

# Don't run CI for this config yet. We're not ready to move official builds on to Azure Pipelines
trigger: none
# Run PR validation on all branches
pr:
branches:
include:
- '*'
jobs:
- template: jobs/default-build.yml
parameters:
jobName: Windows_Build
jobDisplayName: "Build and test: Windows"
agentOs: Windows
beforeBuild:
- powershell: "& ./src/Servers/IIS/tools/UpdateIISExpressCertificate.ps1"
displayName: Setup IISExpress test certificates
- template: jobs/default-build.yml
parameters:
jobName: macOs_Build
jobDisplayName: "Build and test : macOS"
agentOs: macOS
- template: jobs/default-build.yml
parameters:
jobName: Linux_Build
jobDisplayName: "Build and test : Linux"
agentOs: Linux