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

devBuilds.yml « pipelines « .azure - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8244a7d903cb09acbcb0b37c7e521487c5757fd3 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#
# See https://docs.microsoft.com/en-us/vsts/pipelines/yaml-schema for details on this file.
#

# Configure which branches trigger builds
trigger: none

# no PR builds
pr: none

stages:
- stage: build_components
  displayName: Build Components
  jobs:
  # Build components on Windows (x64)
  - template: jobs/default-build.yml
    parameters:
      jobName: Windows_build
      jobDisplayName: "Build: Components"
      agentOs: Windows
      steps:
      - script: ./eng/build.cmd
                -ci
                -arch x64
                /bl:$(Build.SourcesDirectory)/artifacts/log/build.components.x64.binlog
        displayName: Build x64
        workingDirectory: ./src/Components
      artifacts:
      - name: Windows_Logs
        path: artifacts/log/
        publishOnError: true
        includeForks: true

- stage: build_servers
  displayName: Build Servers
  jobs:
  # Build servers on Windows (x64)
  - template: jobs/default-build.yml
    parameters:
      jobName: Windows_build
      jobDisplayName: "Build: Servers"
      agentOs: Windows
      steps:
      - script: ./eng/build.cmd
                -ci
                -arch x64
                /bl:$(Build.SourcesDirectory)/artifacts/log/build.servers.x64.binlog
        displayName: Build x64
        workingDirectory: ./src/Servers
      artifacts:
      - name: Windows_Logs
        path: artifacts/log/
        publishOnError: true
        includeForks: true

- stage: build_project_templates
  displayName: Build Project Templates
  jobs:
  # Build servers on Windows (x64)
  - template: jobs/default-build.yml
    parameters:
      jobName: Windows_build
      jobDisplayName: "Build: Project Templates"
      agentOs: Windows
      steps:
      - script: ./eng/build.cmd
                -ci
                -arch x64
                /bl:$(Build.SourcesDirectory)/artifacts/log/build.projectTemplates.x64.binlog
        displayName: Build x64
        workingDirectory: ./src/ProjectTemplates
      artifacts:
      - name: Windows_Logs
        path: artifacts/log/
        publishOnError: true
        includeForks: true

- stage: build_all
  displayName: Build Everything
  jobs:
  # Build servers on Windows (x64)
  - template: jobs/default-build.yml
    parameters:
      jobName: Windows_build
      jobDisplayName: "Build: Everything"
      agentOs: Windows
      steps:
      - script: ./eng/build.cmd
                -ci
                -arch x64
                /bl:$(Build.SourcesDirectory)/artifacts/log/build.all.x64.binlog
        displayName: Build x64
      artifacts:
      - name: Windows_Logs
        path: artifacts/log/
        publishOnError: true
        includeForks: true