Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2020-08-04 16:58:30 +0300
committerRobert Adam <dev@robert-adam.de>2020-08-04 16:58:30 +0300
commitcbc4dddd4c5ec800323500dc43912d5c4d29213b (patch)
treead4deb3c464685c0ee92aa024b12ee62f58dff39 /.ci
parented0a737521d3fd149a73c535b2f6cb6024a73170 (diff)
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.
Diffstat (limited to '.ci')
-rw-r--r--.ci/azure-pipelines/steps_windows.yml3
1 files changed, 2 insertions, 1 deletions
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: