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
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -10,16 +10,16 @@ parameters:
10
10
HelixPostCommands: ''# optional -- commands to run after Helix work item execution
11
11
WorkItemDirectory: ''# optional -- a payload directory to zip up and send to Helix; requires WorkItemCommand; incompatible with XUnitProjects
12
12
WorkItemCommand: ''# optional -- a command to execute on the payload; requires WorkItemDirectory; incompatible with XUnitProjects
13
-
WorkItemTimeout: ''# optional -- a timeout in seconds for the work item command; requires WorkItemDirectory; incompatible with XUnitProjects
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
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
19
19
XUnitRunnerVersion: ''# optional -- version of the xUnit nuget package you wish to use on Helix; required for XUnitProjects
20
20
IncludeDotNetCli: false # optional -- true will download a version of the .NET CLI onto the Helix machine as a correlation payload; requires DotNetCliPackageType and DotNetCliVersion
21
-
DotNetCliPackageType: ''# optional -- either 'sdk' or 'runtime'; determines whether the sdk or runtime will be sent to Helix; see https://raw.githubusercontent.com/dotnet/core/master/release-notes/releases.json
22
-
DotNetCliVersion: ''# optional -- version of the CLI to send to Helix; based on this: https://raw.githubusercontent.com/dotnet/core/master/release-notes/releases.json
21
+
DotNetCliPackageType: ''# optional -- either 'sdk' or 'runtime'; determines whether the sdk or runtime will be sent to Helix; see https://raw.githubusercontent.com/dotnet/core/master/release-notes/releases-index.json
22
+
DotNetCliVersion: ''# optional -- version of the CLI to send to Helix; based on this: https://raw.githubusercontent.com/dotnet/core/master/release-notes/releases-index.json
23
23
EnableXUnitReporter: false # optional -- true enables XUnit result reporting to Mission Control
24
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."
25
25
IsExternal: false # [DEPRECATED] -- doesn't do anything, jobs are external if HelixAccessToken is empty and Creator is set
0 commit comments