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

evaluate-default-paths.yml « common « pipelines « eng - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31ee0bdaa405e9f81b8e9ac5c93f4707b45edad5 (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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# Template to evaluate common paths in different pipelines.
parameters:
  extraSubsets: ''

jobs:
- template: /eng/pipelines/common/evaluate-paths-job.yml
  parameters:
    paths:
    - subset: coreclr
      include:
      - src/libraries/System.Private.CoreLib/*
      - src/native/libs/Common/*
      - src/native/libs/System.Globalization.Native/*
      - src/native/libs/System.IO.Compression.Native/*
      exclude:
      - eng/Version.Details.xml
      - '*.md'
      - LICENSE.TXT
      - PATENTS.TXT
      - THIRD-PARTY-NOTICES.TXT
      - docs/*
      - src/installer/*
      - src/mono/*
      - src/libraries/*
      - src/native/libs/*
      - src/tests/*
      - eng/pipelines/installer/*
      - eng/pipelines/mono/*
      - eng/pipelines/libraries/*
    - subset: mono
      include:
      - src/libraries/System.Private.CoreLib/*
      - src/native/libs/Common/*
      - src/native/libs/System.Globalization.Native/*
      - src/native/libs/System.IO.Compression.Native/*
      exclude:
      - eng/Version.Details.xml
      - '*.md'
      - LICENSE.TXT
      - PATENTS.TXT
      - THIRD-PARTY-NOTICES.TXT
      - docs/*
      - src/installer/*
      - src/coreclr/*
      - src/libraries/*
      - src/native/libs/*
      - src/tests/*
      - eng/pipelines/installer/*
      - eng/pipelines/coreclr/*
      - eng/pipelines/libraries/*
    - subset: libraries
      exclude:
      - eng/Version.Details.xml
      - '*.md'
      - LICENSE.TXT
      - PATENTS.TXT
      - THIRD-PARTY-NOTICES.TXT
      - docs/*
      - src/installer/*
      - src/mono/*
      - src/coreclr/*
      - src/tests/*
      - src/native/eventpipe/*
      - eng/pipelines/coreclr/*
      - eng/pipelines/mono/*
      - eng/pipelines/installer/*
    - subset: runtimetests
      include:
      - src/tests/*
    - subset: installer
      include:
      - docs/manpages/*
      exclude:
      - eng/Version.Details.xml
      - '*.md'
      - LICENSE.TXT
      - PATENTS.TXT
      - THIRD-PARTY-NOTICES.TXT
      - docs/*
      - src/coreclr/*
      - src/mono/*
      - src/libraries/*
      - src/tests/*
      - src/native/eventpipe/*
      - eng/pipelines/coreclr/*
      - eng/pipelines/mono/*
      - eng/pipelines/libraries/*
    # We have limited Apple Silicon testing capacity
    # We want PR testing on a narrower set of changes
    # Specifically runtime directories which are higher risk of
    # introducing a platform specific regression
    - subset: coreclr_AppleSilicon
      include:
      - src/coreclr/dlls/*
      - src/coreclr/gc/*
      - src/coreclr/gcinfo/*
      - src/coreclr/inc/*
      - src/coreclr/jit/*
      - src/coreclr/pal/*
      - src/coreclr/vm/*
      exclude:
      - '*'
    - subset: coreclr_jit
      include:
      - src/coreclr/jit/*
    - subset: wasmbuildtests
      include:
      - src/tasks/*
      - src/tests/BuildWasmApps/*
      - src/mono/wasm/build/*
      - src/mono/wasm/runtime/*
      - src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Manifest/*
      - src/mono/nuget/Microsoft.NET.Runtime.WebAssembly.Sdk/*
      - src/mono/nuget/Microsoft.NET.Runtime.wasm.Sample.Mono/*
      - src/mono/nuget/Microsoft.NETCore.BrowserDebugHost.Transport/*
      - src/mono/nuget/Microsoft.NET.Runtime.MonoAOTCompiler.Task/*
      - src/mono/nuget/Microsoft.NET.Runtime.MonoTargets.Sdk/*
      - src/mono/mono/*
      - eng/testing/scenarios/BuildWasmAppsJobsList.txt
      - eng/testing/workloads-testing.targets
      - eng/Version.Details.xml
      - eng/Versions.props
      - src/mono/wasm/emscripten-version.txt
    - subset: wasmdebuggertests
      include:
      - src/mono/wasm/debugger/*
      - src/mono/wasm/runtime/*
      - src/mono/mono/*
    - subset: allwasm
      include:
      - eng/Version.Details.xml
      - src/mono/wasm/emscripten-version.txt

    - ${{ if ne(parameters.extraSubsets, '') }}:
      - ${{ parameters.extraSubsets }}