-
Notifications
You must be signed in to change notification settings - Fork 999
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* add creator, set to empty in internal, comment edits * helix token is secret AzDO pipeline variable * add xunit assert version * helix access token * helix source, differ from internal to public
- Loading branch information
Showing
13 changed files
with
152 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
parameters: | ||
# All parameters are required for our purposes (except HelixType); see send-to-helix.yml for details | ||
HelixSource: '' | ||
HelixType: 'tests/default' | ||
HelixTargetQueues: '' | ||
HelixAccessToken: '' | ||
Creator: '' | ||
XUnitProjects: '' | ||
DisplayNamePrefix: '' | ||
|
||
steps: | ||
- template: /eng/common/templates/steps/send-to-helix.yml | ||
parameters: | ||
HelixSource: ${{ parameters.HelixSource }} | ||
HelixType: ${{ parameters.HelixType }} | ||
HelixBuild: $(Build.BuildNumber) | ||
HelixTargetQueues: ${{ parameters.HelixTargetQueues }} | ||
HelixAccessToken: ${{ parameters.HelixAccessToken }} # only defined for internal CI | ||
Creator: ${{ parameters.Creator }} # required for public / external (when there is no access token) | ||
XUnitProjects: ${{ parameters.XUnitProjects }} | ||
XUnitPublishTargetFramework: netcoreapp3.0 # Whatever tfm will work for our test projects for `dotnet publish` | ||
XUnitRuntimeTargetFramework: netcoreapp2.0 # Whatever tfm to pick from the xunit package, it must exist in that package or the helix job will fail | ||
XUnitRunnerVersion: '2.4.1' # Should match XUnitRunnerConsoleVersion in eng/Versions.props | ||
IncludeDotNetCli: true | ||
DotNetCliPackageType: 'sdk' | ||
DotNetCliVersion: '3.0.100-preview-010184' # MUST be official release: https://dotnet.microsoft.com/download/dotnet-core/3.0 ; does not need to match sdk we build against | ||
EnableXUnitReporter: true | ||
WaitForWorkItemCompletion: true | ||
DisplayNamePrefix: ${{ parameters.DisplayNamePrefix }} | ||
condition: succeeded() | ||
continueOnError: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.