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
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@ parameters:
5
5
HelixBuild: $(Build.BuildNumber) # required -- the build number Helix will use to identify this -- automatically set to the AzDO build number
6
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
+
HelixConfiguration: ''# optional -- additional property attached to a job
8
9
HelixPreCommands: ''# optional -- commands to run before Helix work item execution
9
10
HelixPostCommands: ''# optional -- commands to run after Helix work item execution
10
11
WorkItemDirectory: ''# optional -- a payload directory to zip up and send to Helix; requires WorkItemCommand; incompatible with XUnitProjects
@@ -22,6 +23,7 @@ parameters:
22
23
EnableXUnitReporter: false # optional -- true enables XUnit result reporting to Mission Control
23
24
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
25
IsExternal: false # [DEPRECATED] -- doesn't do anything, jobs are external if HelixAccessToken is empty and Creator is set
26
+
HelixBaseUri: 'https://helix.dot.net/'# optional -- sets the Helix API base URI (allows targeting int)
25
27
Creator: ''# optional -- if the build is external, use this to specify who is sending the job
26
28
DisplayNamePrefix: 'Run Tests'# optional -- rename the beginning of the displayName of the steps in AzDO
27
29
condition: succeeded() # optional -- condition for step to execute; defaults to succeeded()
0 commit comments