You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Please remember to update the documentation if you make changes to these parameters!
2
+
parameters:
3
+
HelixSource: 'pr/default'# required -- sources must start with pr/, official/, prodcon/, or agent/
4
+
HelixType: 'tests/default'# required -- Helix telemetry which identifies what type of data this is; should include "test" for clarity and must end in '/'
5
+
HelixBuild: $(Build.BuildNumber) # required -- the build number Helix will use to identify this -- automatically set to the AzDO build number
6
+
HelixTargetQueues: ''# required -- semicolon delimited list of Helix queues to test on; see https://helix.dot.net/ for a list of queues
7
+
HelixAccessToken: ''# required -- access token to make Helix API requests; should be provided by the appropriate variable group
8
+
Configuration: 'Debug'
9
+
Architecture: 'x64'
10
+
MsBuildScript: ''
11
+
WarnAsError: ''
12
+
HelixConfiguration: ''# optional -- additional property attached to a job
13
+
IncludeDotNetCli: true # optional -- true will download a version of the .NET CLI onto the Helix machine as a correlation payload; requires DotNetCliPackageType and DotNetCliVersion
14
+
EnableXUnitReporter: true # optional -- true enables XUnit result reporting to Mission Control
15
+
WaitForWorkItemCompletion: true # optional -- true will make the task wait until work items have been completed and fail the build if work items fail. False is "fire and forget."
16
+
HelixBaseUri: 'https://helix.dot.net'# optional -- sets the Helix API base URI (allows targeting int)
17
+
Creator: 'ML.NET'# optional -- if the build is external, use this to specify who is sending the job
18
+
DisplayNamePrefix: 'Run Helix Tests'# optional -- rename the beginning of the displayName of the steps in AzDO
19
+
continueOnError: false # optional -- determines whether to continue the build if the step errors; defaults to false
20
+
condition: succeeded() # optional -- condition for step to execute; defaults to succeeded()
0 commit comments