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:
authorDavide Beatrici <davidebeatrici@gmail.com>2019-04-03 00:24:59 +0300
committerDavide Beatrici <davidebeatrici@gmail.com>2019-04-03 00:24:59 +0300
commit2555a87c6233f3d3d513bb11c86aefb61661cc96 (patch)
tree6912e1a887c6db652a353f3b54918f02b96041ca /.azure-pipelines.yml
parent5f43f6510ff7e22d449a5325d302dd51f1ec064e (diff)
Azure Pipelines: add macOS build
This should lower the overall CI completion time, because the macOS build seems to always take a while to start on Travis CI. The macOS build will be removed from Travis CI in a dedicated commit.
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r--.azure-pipelines.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index 842919d16..263aa79b6 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -20,3 +20,13 @@ jobs:
displayName: 'Install build environment'
- powershell: scripts/azure-pipelines/build.ps1
displayName: 'Build'
+ - job: macOS
+ pool:
+ vmImage: 'macOS-10.13'
+ steps:
+ - script: git submodule --quiet update --init --recursive
+ displayName: 'Fetch submodules'
+ - script: scripts/azure-pipelines/install-environment_macos.bash
+ displayName: 'Install build environment'
+ - script: scripts/azure-pipelines/build_macos.bash
+ displayName: 'Build'