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
Copy file name to clipboardExpand all lines: eng/common/templates/steps/send-to-helix.yml
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ parameters:
3
3
HelixSource: 'pr/default'# required -- sources must start with pr/, official/, prodcon/, or agent/
4
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
5
HelixBuild: $(Build.BuildNumber) # required -- the build number Helix will use to identify this -- automatically set to the AzDO build number
6
-
HelixTargetQueues: ''# required -- semicolondelimited list of Helix queues to test on; see https://helix.dot.net/ for a list of queues
6
+
HelixTargetQueues: ''# required -- semicolon-delimited list of Helix queues to test on; see https://helix.dot.net/ for a list of queues
7
7
HelixAccessToken: ''# required -- access token to make Helix API requests; should be provided by the appropriate variable group
8
8
HelixConfiguration: ''# optional -- additional property attached to a job
9
9
HelixPreCommands: ''# optional -- commands to run before Helix work item execution
@@ -12,7 +12,7 @@ parameters:
12
12
WorkItemCommand: ''# optional -- a command to execute on the payload; requires WorkItemDirectory; incompatible with XUnitProjects
13
13
WorkItemTimeout: ''# optional -- a timeout in TimeSpan.Parse-ready value (e.g. 00:02:00) for the work item command; requires WorkItemDirectory; incompatible with XUnitProjects
14
14
CorrelationPayloadDirectory: ''# optional -- a directory to zip up and send to Helix as a correlation payload
15
-
XUnitProjects: ''# optional -- semicolondelimited list of XUnitProjects to parse and send to Helix; requires XUnitRuntimeTargetFramework, XUnitPublishTargetFramework, XUnitRunnerVersion, and IncludeDotNetCli=true
15
+
XUnitProjects: ''# optional -- semicolon-delimited list of XUnitProjects to parse and send to Helix; requires XUnitRuntimeTargetFramework, XUnitPublishTargetFramework, XUnitRunnerVersion, and IncludeDotNetCli=true
16
16
XUnitWorkItemTimeout: ''# optional -- the workitem timeout in seconds for all workitems created from the xUnit projects specified by XUnitProjects
17
17
XUnitPublishTargetFramework: ''# optional -- framework to use to publish your xUnit projects
18
18
XUnitRuntimeTargetFramework: ''# optional -- framework to use for the xUnit console runner
@@ -22,14 +22,14 @@ parameters:
22
22
DotNetCliVersion: ''# optional -- version of the CLI to send to Helix; based on this: https://raw.githubusercontent.com/dotnet/core/main/release-notes/releases-index.json
23
23
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."
24
24
IsExternal: false # [DEPRECATED] -- doesn't do anything, jobs are external if HelixAccessToken is empty and Creator is set
25
-
HelixBaseUri: 'https://helix.dot.net/'# optional -- sets the Helix API base URI (allows targeting int)
25
+
HelixBaseUri: 'https://helix.dot.net/'# optional -- sets the Helix API base URI (allows targeting https://helix.int-dot.net )
26
26
Creator: ''# optional -- if the build is external, use this to specify who is sending the job
27
27
DisplayNamePrefix: 'Run Tests'# optional -- rename the beginning of the displayName of the steps in AzDO
28
28
condition: succeeded() # optional -- condition for step to execute; defaults to succeeded()
29
29
continueOnError: false # optional -- determines whether to continue the build if the step errors; defaults to false
0 commit comments