Added the first Darwin build, to make sure everything works.

This commit is contained in:
Pietro Gagliardi 2019-04-05 10:40:24 -04:00
parent dbed420d32
commit 77193006b9
1 changed files with 24 additions and 2 deletions

View File

@ -325,5 +325,27 @@ jobs:
# } # }
# mac: # mac {
# imageName: 'macos-10.13'
- 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)
# }