Browse Source

Fix dotnet feed publishing (#496)

Removing the steps that create AssetManifest files from Linux to prevent the Publish task from trying to upload the same assets multiple times in parallel and fail on file locks.
Removing empty parameter on macOS step.
pull/497/head
Sébastien Ros 6 years ago
committed by GitHub
parent
commit
ea86476958
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      azure-pipelines.yml

3
azure-pipelines.yml

@ -118,8 +118,6 @@ stages:
- script: eng/common/cibuild.sh
--configuration $(_BuildConfig)
--prepareMachine
$(_OfficialBuildArgs)
/p:DotNetPublishUsingPipelines=$(_PublishUsingPipelines)
displayName: Build
- task: PublishBuildArtifacts@1
displayName: Upload TestResults
@ -151,7 +149,6 @@ stages:
- script: eng/common/cibuild.sh
--configuration $(_BuildConfig)
--prepareMachine
$(_InternalRuntimeDownloadArgs)
displayName: Build
- task: PublishBuildArtifacts@1
displayName: Upload TestResults

Loading…
Cancel
Save