From 77193006b9ace8b1c3bcbde6f868a7e060c5ec7b Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Fri, 5 Apr 2019 10:40:24 -0400 Subject: [PATCH] Added the first Darwin build, to make sure everything works. --- azure-pipelines.yml | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f862f5a9..f2cbd8dc 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -325,5 +325,27 @@ jobs: # } -# mac: -# imageName: 'macos-10.13' +# mac { + +- job: darwin_amd64_1012sdk_shared_ninja + displayName: 'Darwin amd64 10.12 SDK Shared with Ninja' + pool: + vmImage: 'macos-10.13' + workspace: + clean all + steps: + - template: azure-pipelines/setup-python3.yml + - template: azure-pipelines/install-latest-meson.yml + - script: | + brew install ninja + displayName: 'Install Dependencies' + - template: azure-pipelines/configure.yml + parameters: + beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.12 Path) + defaultLibrary: shared + backend: ninja + - template: azure-pipelines/build-ninja.yml + parameters: + beforeBuild: export SDKROOT=$(xcodebuild -version -sdk macosx10.12 Path) + +# }