generated from dotnet/new-repo
-
Notifications
You must be signed in to change notification settings - Fork 52
/
azure-pipelines-PR.yml
52 lines (44 loc) · 1018 Bytes
/
azure-pipelines-PR.yml
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
trigger:
batch: true
branches:
include:
- main
- release/*
pr:
- main
- release/*
name: $(Date:yyyyMMdd)$(Rev:.r)
variables:
- name: TeamName
value: dotnet-core-acquisition
- name: SignType
value: test
stages:
- stage: Build
jobs:
# -------- Build Windows legs --------
# Windows x64
- template: /eng/jobs/windows-build-PR.yml
parameters:
name: win_x64
displayName: win-x64
targetArchitecture: x64
codeql: true
# Windows x86
- template: /eng/jobs/windows-build-PR.yml
parameters:
name: win_x86
displayName: win-x86
targetArchitecture: x86
# Windows arm64
- template: /eng/jobs/windows-build-PR.yml
parameters:
name: win_arm64
displayName: win-arm64
targetArchitecture: arm64
# Source-build
- template: /eng/common/templates/jobs/source-build.yml
parameters:
platform:
name: 'Managed'
container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream9'