More macOS options.

This commit is contained in:
Pietro Gagliardi 2019-04-05 20:52:26 -04:00
parent 7082146f9e
commit a9fb246d74
1 changed files with 98 additions and 0 deletions

View File

@ -327,6 +327,9 @@ jobs:
# mac {
# notes:
# [18:36:55] <@jpakkane> Don't use the xcode backend for anything serious, it's a bit crap.
- job: darwin_amd64_1012sdk_shared_ninja
displayName: 'Darwin amd64 10.12 SDK Shared with Ninja'
pool:
@ -346,4 +349,99 @@ jobs:
parameters:
beforeBuild: export SDKROOT=$(xcodebuild -version -sdk macosx10.12 Path)
- job: darwin_amd64_1012sdk_static_ninja
displayName: 'Darwin amd64 10.12 SDK Static with Ninja'
pool:
vmImage: 'macos-10.13'
workspace:
clean: all
steps:
- template: azure-pipelines/setup-python3.yml
- template: azure-pipelines/install-latest-meson.yml
- template: azure-pipelines/darwin-install-ninja.yml
- template: azure-pipelines/configure.yml
parameters:
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.12 Path)
defaultLibrary: static
backend: ninja
- template: azure-pipelines/build-ninja.yml
parameters:
beforeBuild: export SDKROOT=$(xcodebuild -version -sdk macosx10.12 Path)
- job: darwin_amd64_1013sdk_shared_ninja
displayName: 'Darwin amd64 10.13 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
- template: azure-pipelines/darwin-install-ninja.yml
- template: azure-pipelines/configure.yml
parameters:
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.13 Path)
defaultLibrary: shared
backend: ninja
- template: azure-pipelines/build-ninja.yml
parameters:
beforeBuild: export SDKROOT=$(xcodebuild -version -sdk macosx10.13 Path)
- job: darwin_amd64_1013sdk_static_ninja
displayName: 'Darwin amd64 10.13 SDK Static with Ninja'
pool:
vmImage: 'macos-10.13'
workspace:
clean: all
steps:
- template: azure-pipelines/setup-python3.yml
- template: azure-pipelines/install-latest-meson.yml
- template: azure-pipelines/darwin-install-ninja.yml
- template: azure-pipelines/configure.yml
parameters:
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.13 Path)
defaultLibrary: static
backend: ninja
- template: azure-pipelines/build-ninja.yml
parameters:
beforeBuild: export SDKROOT=$(xcodebuild -version -sdk macosx10.13 Path)
- job: darwin_amd64_1014sdk_shared_ninja
displayName: 'Darwin amd64 10.14 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
- template: azure-pipelines/darwin-install-ninja.yml
- template: azure-pipelines/configure.yml
parameters:
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.14 Path)
defaultLibrary: shared
backend: ninja
- template: azure-pipelines/build-ninja.yml
parameters:
beforeBuild: export SDKROOT=$(xcodebuild -version -sdk macosx10.14 Path)
- job: darwin_amd64_1014sdk_static_ninja
displayName: 'Darwin amd64 10.14 SDK Static with Ninja'
pool:
vmImage: 'macos-10.13'
workspace:
clean: all
steps:
- template: azure-pipelines/setup-python3.yml
- template: azure-pipelines/install-latest-meson.yml
- template: azure-pipelines/darwin-install-ninja.yml
- template: azure-pipelines/configure.yml
parameters:
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.14 Path)
defaultLibrary: static
backend: ninja
- template: azure-pipelines/build-ninja.yml
parameters:
beforeBuild: export SDKROOT=$(xcodebuild -version -sdk macosx10.14 Path)
# }