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:
authorDavide Beatrici <git@davidebeatrici.dev>2021-01-23 02:24:45 +0300
committerDavide Beatrici <git@davidebeatrici.dev>2021-01-23 02:24:45 +0300
commit9be37c9f237b2f3d05ef5bbb564e094d3397dad7 (patch)
treee17c57b54325776718a850ca472328638180d666 /.ci
parent4b533dce5252833aad452f2b39bcd1c305a58796 (diff)
CI(azure): Simplify and improve job name for Windows builds
This fixes the last build failure, which was due to the job's display name containing spaces. "x86_64" is changed to "x64" as the latter appears to be the most common identifier for the architecture, at least for Windows.
Diffstat (limited to '.ci')
-rw-r--r--.ci/azure-pipelines/main-pr.yml4
-rw-r--r--.ci/azure-pipelines/main.yml4
2 files changed, 2 insertions, 6 deletions
diff --git a/.ci/azure-pipelines/main-pr.yml b/.ci/azure-pipelines/main-pr.yml
index a6dcc4dec..46c2927af 100644
--- a/.ci/azure-pipelines/main-pr.yml
+++ b/.ci/azure-pipelines/main-pr.yml
@@ -9,8 +9,7 @@ variables:
BUILD_NUMBER_TOKEN: ''
jobs:
- - job: Windows_x86_64
- displayName: Windows (x86_64)
+ - job: Windows_x64
pool:
vmImage: 'windows-latest'
variables:
@@ -22,7 +21,6 @@ jobs:
parameters:
arch: 'x64'
- job: Windows_x86
- displayName: Windows (x86)
pool:
vmImage: 'windows-latest'
variables:
diff --git a/.ci/azure-pipelines/main.yml b/.ci/azure-pipelines/main.yml
index d56109e9c..d86a445e5 100644
--- a/.ci/azure-pipelines/main.yml
+++ b/.ci/azure-pipelines/main.yml
@@ -7,8 +7,7 @@ variables:
# YAML files. As it is set there though, we don't have to specify it here.
jobs:
- - job: Windows_x86_64
- displayName: Windows (x86_64)
+ - job: Windows_x64
pool:
vmImage: 'windows-latest'
variables:
@@ -20,7 +19,6 @@ jobs:
parameters:
arch: 'x64'
- job: Windows_x86
- displayName: Windows (x86)
pool:
vmImage: 'windows-latest'
variables: