From 5094de66e05b4933c0edccf68fd42d5f9decfb55 Mon Sep 17 00:00:00 2001 From: Davide Beatrici Date: Wed, 9 Oct 2019 06:51:46 +0200 Subject: [PATCH] Azure Pipelines: restore macOS build It was removed in bb6416c01381ffa39bbc07c1833f21da231e252d, due to the warnings appearing because of the deprecated stuff. --- .azure-pipelines.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index ba908454c..1c6f1bad2 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -34,3 +34,13 @@ jobs: inputs: pathtoPublish: '$(Build.ArtifactStagingDirectory)' artifactName: AppImage + - job: macOS + pool: + vmImage: 'macOS-latest' + 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'