From cbc4dddd4c5ec800323500dc43912d5c4d29213b Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Tue, 4 Aug 2020 15:58:30 +0200 Subject: [PATCH] CI(windows): Zip all PDB files Instead of publishing each and every PDB file separately, we now zip them together into an archive and publish that. That'll reduce the amount of published files which should make it easier to find what you're looking for. --- .ci/azure-pipelines/steps_windows.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.ci/azure-pipelines/steps_windows.yml b/.ci/azure-pipelines/steps_windows.yml index 7a60c7321..aa64312ad 100644 --- a/.ci/azure-pipelines/steps_windows.yml +++ b/.ci/azure-pipelines/steps_windows.yml @@ -11,7 +11,8 @@ steps: .\Create-Win32InstallerMUI.ps1 -PackageName 'Mumble' -Version '1.4.0' cp *.sha* $(Build.ArtifactStagingDirectory) cp *.msi $(Build.ArtifactStagingDirectory) - cp *.pdb $(Build.ArtifactStagingDirectory) + 7z a PDBs.7z *.pdb + cp PDBs.7z $(Build.ArtifactStagingDirectory) displayName: Build installer - template: task-publish-artifacts.yml parameters: