-
Notifications
You must be signed in to change notification settings - Fork 388
Add build manifest #5210
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
Add build manifest #5210
Changes from all commits
c797cb2
8fc2780
67498d5
bb7858b
865b4ff
3105332
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,6 +24,7 @@ parameters: | |
| enablePublishBuildAssets: false | ||
| enablePublishTestResults: false | ||
| enablePublishUsingPipelines: false | ||
| useBuildManifest: false | ||
| mergeTestResults: false | ||
| testRunTitle: $(AgentOsName)-$(BuildConfiguration)-xunit | ||
| name: '' | ||
|
|
@@ -218,3 +219,12 @@ jobs: | |
| ArtifactName: AssetManifests | ||
| continueOnError: ${{ parameters.continueOnError }} | ||
| condition: and(succeeded(), eq(variables['_DotNetPublishToBlobFeed'], 'true')) | ||
|
|
||
| - ${{ if eq(parameters.useBuildManifest, true) }}: | ||
| - task: PublishBuildArtifacts@1 | ||
| displayName: Publish Build Manifest | ||
| inputs: | ||
| PathToPublish: '$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)/manifest.props' | ||
|
Contributor
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. IMHO we really need a better name than just "manifest.props"
Member
Author
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. what do you think it should be?
Contributor
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. I'll post a more general observation in the PR. |
||
| PublishLocation: Container | ||
| ArtifactName: BuildManifests | ||
| continueOnError: ${{ parameters.continueOnError }} | ||
Uh oh!
There was an error while loading. Please reload this page.