Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ci.yml « pipelines « .azure - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 99ce2823b000ddd82f35d56f3157326d1166972a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# 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