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
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2020-08-03 19:06:44 +0300
committerRobert Adam <dev@robert-adam.de>2020-08-04 16:42:55 +0300
commitdd31b119ae07e2f0a25bc178a5088ad8f212b8e5 (patch)
tree1f5f527ecaea3f80f01c2ad56c187c9833483676 /.ci/azure-pipelines/main.yml
parentb6fe522ec53311ae51853620469335e699215414 (diff)
CI(azure): Don't overwrite build artifacts
As of now the built x86 files overwrite the x64 ones since the x64 build is usually done first but they both produce files of the same name. With this commit the build artifacts for x86 and x64 are separated.
Diffstat (limited to '.ci/azure-pipelines/main.yml')
-rw-r--r--.ci/azure-pipelines/main.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.ci/azure-pipelines/main.yml b/.ci/azure-pipelines/main.yml
index 2b4f2c28c..dba7474fa 100644
--- a/.ci/azure-pipelines/main.yml
+++ b/.ci/azure-pipelines/main.yml
@@ -15,6 +15,8 @@ jobs:
VCVARS_PATH: 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat'
steps:
- template: steps_windows.yml
+ parameters:
+ arch: 'x64'
- job: Windows_x86
displayName: Windows (x86)
pool:
@@ -25,6 +27,8 @@ jobs:
VCVARS_PATH: 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsamd64_x86.bat'
steps:
- template: steps_windows.yml
+ parameters:
+ arch: 'x86'
- job: Linux
pool:
vmImage: 'ubuntu-16.04'