Skip to content

Commit 87954fa

Browse files
authored
Establish runtime-diagnostics pipeline (#113169)
The idea behind this pipeline is to pull in dotnet/diagnostics in order to supply live runtimes to diagnostics test runs. Although it will run on a schedule, the primary reason to have this is for PR validation when making changes we know could impact the diagnostics repo. Note that this change is bare bones in order to establish the pipeline in AzDo.
1 parent 7dd74fc commit 87954fa

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

eng/pipelines/runtime-diagnostics.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
trigger: none
2+
3+
schedules:
4+
- cron: "0 10 * * *" # run at 10:00 (UTC) which is 2:00 (PST).
5+
displayName: Runtime Diagnostics scheduled run
6+
branches:
7+
include:
8+
- main
9+
always: true
10+
11+
resources:
12+
repositories:
13+
- repository: diagnostics
14+
type: github
15+
name: dotnet/diagnostics
16+
endpoint: public
17+
18+
variables:
19+
- template: /eng/pipelines/common/variables.yml
20+
21+
schedules:
22+
- cron: "30 2 * * *"
23+
displayName: Every night at 2:30AM
24+
branches:
25+
include:
26+
- main
27+
always: true
28+
29+
extends:
30+
template: /eng/pipelines/common/templates/pipeline-with-resources.yml
31+
parameters:
32+
stages:
33+
- stage: Build
34+
jobs:

0 commit comments

Comments
 (0)