We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents afbba72 + 0b06f0a commit 578aa69Copy full SHA for 578aa69
azure-pipelines/profiling.yml
@@ -0,0 +1,28 @@
1
+trigger: none
2
+pr: none
3
+schedules:
4
+- cron: '18 1 * * *' # every day at 1:18 AM
5
+ displayName: Periodic profiling run
6
+ branches:
7
+ include:
8
+ - main
9
+
10
+variables:
11
+- name: TRACE_DROP_LOCATION
12
+ value: $(Build.ArtifactStagingDirectory)/traces/
13
+- name: MERGED_TRACE_LOCATION
14
+ value: $(Build.ArtifactStagingDirectory)/mergedtrace/
15
16
+extends:
17
+ template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates
18
+ parameters:
19
+ pool:
20
+ name: AzurePipelines-EO
21
+ image: 1ESPT-Ubuntu20.04
22
+ os: Linux
23
+ stages:
24
+ - stage: run
25
+ jobs:
26
+ - job: run
27
+ steps:
28
+ - pwsh: echo "Profiling"
0 commit comments