-
Notifications
You must be signed in to change notification settings - Fork 363
/
Copy pathpipeline-resources.yml
87 lines (69 loc) · 2.87 KB
/
pipeline-resources.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
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
parameters:
- name: stages
type: stageList
extends:
template: templateDispatch.yml
parameters:
${{ if eq(variables['System.TeamProject'], 'public') }}:
templatePath: templatePublic.yml
${{ elseif notin(variables['Build.Reason'], 'PullRequest') }}:
templatePath: templateInternal.yml
pipelineTemplate: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates
${{ else }}:
templatePath: templateInternal.yml
pipelineTemplate: v1/1ES.Unofficial.PipelineTemplate.yml@1ESPipelineTemplates
stages: ${{ parameters.stages }}
containers:
linux_x64:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-7
linux_arm:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:cbl-mariner-2.0-cross-arm
env:
ROOTFS_DIR: /crossrootfs/arm
linux_arm64:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:cbl-mariner-2.0-cross-arm64
env:
ROOTFS_DIR: /crossrootfs/arm64
linux_musl_x64:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net8.0-cross-amd64-alpine
env:
ROOTFS_DIR: /crossrootfs/x64
linux_musl_arm:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:cbl-mariner-2.0-cross-arm-alpine
env:
ROOTFS_DIR: /crossrootfs/arm
linux_musl_arm64:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:cbl-mariner-2.0-cross-arm64-alpine
env:
ROOTFS_DIR: /crossrootfs/arm64
linux_s390x:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-cross-s390x
env:
ROOTFS_DIR: /crossrootfs/s390x
linux_ppc64le:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-cross-ppc64le
env:
ROOTFS_DIR: /crossrootfs/ppc64le
linux_riscv64:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-cross-riscv64
env:
ROOTFS_DIR: /crossrootfs/riscv64
test_linux_x64:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream-9
test_linux_musl_x64:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.19-WithNode
options: --cap-add=SYS_PTRACE
test_debian_11_amd64:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:debian-11-amd64
options: '--env PYTHONPATH=/usr/bin/python3.9'
test_fedora:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-41
options: --cap-add=SYS_PTRACE
test_opensuse_15_2:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:opensuse-15.2-helix-amd64
test_ubuntu_20_04:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-20.04
options: '--env PYTHONPATH=/usr/bin/python3.8'
test_ubuntu_22_04:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04
options: '--env PYTHONPATH=/usr/bin/python3.10'