Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.9k
Net8 tests#7319
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Net8 tests #7319
Changes from all commits
5e6ed1ad495c4c2535418cb78448f84fb69489fab939f780766b130c1301e6de84ec25d7eb263fae4a9a4da3877faa175de797c192f5047ee23e47bffa86df16fad3547439baa19afa9a638909af004c4ed4430844f3cb45e23157fe40b5622dd928b5b7c35399309736ccf7cfc888325ca091a577e4ae12eeb269090999a6f19730f68e7f86504cc85e0d9686b682c00f6347a0ff186923b6fe79ec09525b53014e137f3278b277File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -20,6 +20,31 @@ parameters: | ||
| condition: succeeded() # optional -- condition for step to execute; defaults to succeeded() | ||
| steps: | ||
| - script: ${{ parameters.MsBuildScript}} | ||
| $(Build.SourcesDirectory)/eng/helix.proj | ||
| /t:Restore | ||
| /bl:$(Build.SourcesDirectory)/artifacts/log/${{ parameters.Configuration }}/SendToHelix.binlog | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This uses the same log as below, also most of these parameters are not needed for restore. I imagine this step is just temporary until we refactor in a follow up PR though. | ||
| /p:Configuration=${{ parameters.Configuration }} | ||
| /p:TargetArchitecture=${{ parameters.Architecture }} | ||
| /p:BuildConfig=${{ parameters.Configuration }} | ||
| /p:BuildArchitecture=${{ parameters.Architecture }} | ||
| /p:HelixSource=${{ parameters.HelixSource }} | ||
| /p:HelixType=${{ parameters.HelixType }} | ||
| /p:HelixBuild=${{ parameters.HelixBuild }} | ||
| /p:HelixConfiguration="${{ parameters.HelixConfiguration }}" | ||
| /p:HelixAccessToken="${{ parameters.HelixAccessToken }}" | ||
| /p:EnableXUnitReporter=${{ parameters.EnableXUnitReporter }} | ||
| /p:WaitForWorkItemCompletion=${{ parameters.WaitForWorkItemCompletion }} | ||
| /p:HelixBaseUri=${{ parameters.HelixBaseUri }} | ||
| ${{ parameters.WarnAsError }} | ||
| ${{ parameters.TestTargetFramework }} | ||
| displayName: "Helix Restore" | ||
| env: | ||
| SYSTEM_ACCESSTOKEN: $(System.AccessToken) | ||
| Creator: ${{ parameters.Creator }} | ||
| HelixTargetQueues: ${{ parameters.HelixTargetQueues }} | ||
| continueOnError: ${{ parameters.continueOnError }} | ||
| - script: ${{ parameters.MsBuildScript}} | ||
| $(Build.SourcesDirectory)/eng/helix.proj | ||
| /t:Test | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.