2019-03-31 22:45:53 -05:00
|
|
|
# 31 march 2019
|
2019-03-31 22:38:39 -05:00
|
|
|
|
2019-04-01 09:58:03 -05:00
|
|
|
jobs:
|
2019-04-04 09:49:31 -05:00
|
|
|
- job: linux_amd64_shared_ninja
|
2019-04-04 19:27:16 -05:00
|
|
|
displayName: 'Linux amd64 Shared with Ninja'
|
2019-04-04 09:46:59 -05:00
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-16.04'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/setup-python3.yml
|
2019-04-04 10:02:59 -05:00
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-04 09:46:59 -05:00
|
|
|
- script: |
|
|
|
|
sudo apt-get install libgtk-3-dev ninja-build
|
2019-04-04 10:02:59 -05:00
|
|
|
displayName: 'Install Dependencies'
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
defaultLibrary: shared
|
|
|
|
backend: ninja
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-ninja.yml
|
2019-04-04 09:46:59 -05:00
|
|
|
|
2019-04-04 09:49:31 -05:00
|
|
|
- job: linux_amd64_static_ninja
|
2019-04-04 19:27:16 -05:00
|
|
|
displayName: 'Linux amd64 Static with Ninja'
|
2019-04-01 09:58:03 -05:00
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-16.04'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/setup-python3.yml
|
2019-04-04 10:02:59 -05:00
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-01 09:58:03 -05:00
|
|
|
- script: |
|
2019-04-02 10:03:13 -05:00
|
|
|
sudo apt-get install libgtk-3-dev ninja-build
|
2019-04-04 10:02:59 -05:00
|
|
|
displayName: 'Install Dependencies'
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
defaultLibrary: static
|
|
|
|
backend: ninja
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-ninja.yml
|
2019-04-02 21:09:43 -05:00
|
|
|
|
2019-04-04 21:24:20 -05:00
|
|
|
# vs2015 {
|
|
|
|
|
2019-04-04 20:59:11 -05:00
|
|
|
- job: windows_386_msvc2015_shared_ninja
|
|
|
|
displayName: 'Windows 386 MSVC2015 Shared Ninja'
|
|
|
|
pool:
|
|
|
|
vmImage: 'vs2015-win2012r2'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/vs2015-install-python3.yml
|
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-04 21:55:23 -05:00
|
|
|
- template: azure-pipelines/windows-install-ninja.yml
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
|
|
|
defaultLibrary: shared
|
|
|
|
backend: ninja
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-ninja.yml
|
|
|
|
parameters:
|
|
|
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
2019-04-04 20:59:11 -05:00
|
|
|
|
|
|
|
- job: windows_386_msvc2015_static_ninja
|
|
|
|
displayName: 'Windows 386 MSVC2015 Static Ninja'
|
|
|
|
pool:
|
|
|
|
vmImage: 'vs2015-win2012r2'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/vs2015-install-python3.yml
|
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-04 21:55:23 -05:00
|
|
|
- template: azure-pipelines/windows-install-ninja.yml
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
|
|
|
defaultLibrary: static
|
|
|
|
backend: ninja
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-ninja.yml
|
|
|
|
parameters:
|
|
|
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
2019-04-04 20:59:11 -05:00
|
|
|
|
|
|
|
- job: windows_386_msvc2015_shared_msbuild
|
|
|
|
displayName: 'Windows 386 MSVC2015 Shared with MSBuild'
|
|
|
|
pool:
|
|
|
|
vmImage: 'vs2015-win2012r2'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/vs2015-install-python3.yml
|
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
|
|
|
defaultLibrary: shared
|
|
|
|
backend: vs2015
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-msbuild.yml
|
2019-04-04 20:59:11 -05:00
|
|
|
|
|
|
|
- job: windows_386_msvc2015_static_msbuild
|
|
|
|
displayName: 'Windows 386 MSVC2015 Static with MSBuild'
|
|
|
|
pool:
|
|
|
|
vmImage: 'vs2015-win2012r2'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/vs2015-install-python3.yml
|
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
|
|
|
defaultLibrary: static
|
|
|
|
backend: vs2015
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-msbuild.yml
|
2019-04-04 20:59:11 -05:00
|
|
|
|
|
|
|
- job: windows_amd64_msvc2015_shared_ninja
|
|
|
|
displayName: 'Windows amd64 MSVC2015 Shared Ninja'
|
|
|
|
pool:
|
|
|
|
vmImage: 'vs2015-win2012r2'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/vs2015-install-python3.yml
|
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-04 21:55:23 -05:00
|
|
|
- template: azure-pipelines/windows-install-ninja.yml
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
|
|
|
defaultLibrary: shared
|
|
|
|
backend: ninja
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-ninja.yml
|
|
|
|
parameters:
|
|
|
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
2019-04-04 20:59:11 -05:00
|
|
|
|
|
|
|
- job: windows_amd64_msvc2015_static_ninja
|
|
|
|
displayName: 'Windows amd64 MSVC2015 Static Ninja'
|
|
|
|
pool:
|
|
|
|
vmImage: 'vs2015-win2012r2'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/vs2015-install-python3.yml
|
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-04 21:55:23 -05:00
|
|
|
- template: azure-pipelines/windows-install-ninja.yml
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
|
|
|
defaultLibrary: static
|
|
|
|
backend: ninja
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-ninja.yml
|
|
|
|
parameters:
|
|
|
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
2019-04-04 20:59:11 -05:00
|
|
|
|
|
|
|
- job: windows_amd64_msvc2015_shared_msbuild
|
|
|
|
displayName: 'Windows amd64 MSVC2015 Shared with MSBuild'
|
|
|
|
pool:
|
|
|
|
vmImage: 'vs2015-win2012r2'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/vs2015-install-python3.yml
|
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
|
|
|
defaultLibrary: shared
|
|
|
|
backend: vs2015
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-msbuild.yml
|
2019-04-04 20:59:11 -05:00
|
|
|
|
|
|
|
- job: windows_amd64_msvc2015_static_msbuild
|
|
|
|
displayName: 'Windows amd64 MSVC2015 Static with MSBuild'
|
|
|
|
pool:
|
|
|
|
vmImage: 'vs2015-win2012r2'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/vs2015-install-python3.yml
|
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
|
|
|
defaultLibrary: static
|
|
|
|
backend: vs2015
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-msbuild.yml
|
2019-04-04 20:59:11 -05:00
|
|
|
|
2019-04-04 21:24:20 -05:00
|
|
|
# }
|
|
|
|
|
2019-04-05 00:29:43 -05:00
|
|
|
# vs2017 {
|
|
|
|
|
2019-04-04 20:08:09 -05:00
|
|
|
- job: windows_386_msvc2017_shared_ninja
|
|
|
|
displayName: 'Windows 386 MSVC2017 Shared Ninja'
|
|
|
|
pool:
|
|
|
|
vmImage: 'vs2017-win2016'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/setup-python3.yml
|
2019-04-04 20:08:09 -05:00
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-04 21:55:23 -05:00
|
|
|
- template: azure-pipelines/windows-install-ninja.yml
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
|
|
|
defaultLibrary: shared
|
|
|
|
backend: ninja
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-ninja.yml
|
|
|
|
parameters:
|
|
|
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
2019-04-04 20:08:09 -05:00
|
|
|
|
|
|
|
- job: windows_386_msvc2017_static_ninja
|
|
|
|
displayName: 'Windows 386 MSVC2017 Static Ninja'
|
|
|
|
pool:
|
|
|
|
vmImage: 'vs2017-win2016'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/setup-python3.yml
|
2019-04-04 20:08:09 -05:00
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-04 21:55:23 -05:00
|
|
|
- template: azure-pipelines/windows-install-ninja.yml
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
|
|
|
defaultLibrary: static
|
|
|
|
backend: ninja
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-ninja.yml
|
|
|
|
parameters:
|
|
|
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
2019-04-04 20:08:09 -05:00
|
|
|
|
|
|
|
- job: windows_386_msvc2017_shared_msbuild
|
|
|
|
displayName: 'Windows 386 MSVC2017 Shared with MSBuild'
|
|
|
|
pool:
|
|
|
|
vmImage: 'vs2017-win2016'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/setup-python3.yml
|
2019-04-04 20:08:09 -05:00
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
|
|
|
defaultLibrary: shared
|
|
|
|
backend: vs2017
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-msbuild.yml
|
2019-04-04 20:08:09 -05:00
|
|
|
|
|
|
|
- job: windows_386_msvc2017_static_msbuild
|
|
|
|
displayName: 'Windows 386 MSVC2017 Static with MSBuild'
|
|
|
|
pool:
|
|
|
|
vmImage: 'vs2017-win2016'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/setup-python3.yml
|
2019-04-04 20:08:09 -05:00
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
|
|
|
defaultLibrary: static
|
|
|
|
backend: vs2017
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-msbuild.yml
|
2019-04-04 20:08:09 -05:00
|
|
|
|
2019-04-04 19:27:16 -05:00
|
|
|
- job: windows_amd64_msvc2017_shared_ninja
|
|
|
|
displayName: 'Windows amd64 MSVC2017 Shared Ninja'
|
2019-04-02 21:09:43 -05:00
|
|
|
pool:
|
|
|
|
vmImage: 'vs2017-win2016'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/setup-python3.yml
|
2019-04-04 10:02:59 -05:00
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-04 21:55:23 -05:00
|
|
|
- template: azure-pipelines/windows-install-ninja.yml
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
|
|
|
defaultLibrary: shared
|
|
|
|
backend: ninja
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-ninja.yml
|
|
|
|
parameters:
|
|
|
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
2019-04-04 09:46:59 -05:00
|
|
|
|
2019-04-04 09:49:31 -05:00
|
|
|
- job: windows_amd64_msvc2017_static_ninja
|
2019-04-04 19:27:16 -05:00
|
|
|
displayName: 'Windows amd64 MSVC2017 Static Ninja'
|
2019-04-04 09:46:59 -05:00
|
|
|
pool:
|
|
|
|
vmImage: 'vs2017-win2016'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/setup-python3.yml
|
2019-04-04 10:02:59 -05:00
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-04 21:55:23 -05:00
|
|
|
- template: azure-pipelines/windows-install-ninja.yml
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
|
|
|
defaultLibrary: static
|
|
|
|
backend: ninja
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-ninja.yml
|
|
|
|
parameters:
|
|
|
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
2019-03-31 22:38:39 -05:00
|
|
|
|
2019-04-04 19:27:16 -05:00
|
|
|
- job: windows_amd64_msvc2017_shared_msbuild
|
|
|
|
displayName: 'Windows amd64 MSVC2017 Shared with MSBuild'
|
|
|
|
pool:
|
|
|
|
vmImage: 'vs2017-win2016'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/setup-python3.yml
|
2019-04-04 19:27:16 -05:00
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
|
|
|
defaultLibrary: shared
|
|
|
|
backend: vs2017
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-msbuild.yml
|
2019-04-04 19:27:16 -05:00
|
|
|
|
|
|
|
- job: windows_amd64_msvc2017_static_msbuild
|
|
|
|
displayName: 'Windows amd64 MSVC2017 Static with MSBuild'
|
|
|
|
pool:
|
|
|
|
vmImage: 'vs2017-win2016'
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
steps:
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/setup-python3.yml
|
2019-04-04 19:27:16 -05:00
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-05 00:42:23 -05:00
|
|
|
- template: azure-pipelines/configure.yml
|
|
|
|
parameters:
|
|
|
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
|
|
|
defaultLibrary: static
|
|
|
|
backend: vs2017
|
2019-04-05 00:29:43 -05:00
|
|
|
- template: azure-pipelines/build-msbuild.yml
|
|
|
|
|
|
|
|
# }
|
2019-04-04 19:27:16 -05:00
|
|
|
|
2019-04-05 09:40:24 -05:00
|
|
|
# mac {
|
|
|
|
|
2019-04-05 19:52:26 -05:00
|
|
|
# notes:
|
|
|
|
# [18:36:55] <@jpakkane> Don't use the xcode backend for anything serious, it's a bit crap.
|
|
|
|
|
2019-04-05 09:40:24 -05:00
|
|
|
- job: darwin_amd64_1012sdk_shared_ninja
|
|
|
|
displayName: 'Darwin amd64 10.12 SDK Shared with Ninja'
|
|
|
|
pool:
|
|
|
|
vmImage: 'macos-10.13'
|
|
|
|
workspace:
|
2019-04-05 09:42:43 -05:00
|
|
|
clean: all
|
2019-04-05 09:40:24 -05:00
|
|
|
steps:
|
|
|
|
- template: azure-pipelines/setup-python3.yml
|
|
|
|
- template: azure-pipelines/install-latest-meson.yml
|
2019-04-05 10:20:15 -05:00
|
|
|
- template: azure-pipelines/darwin-install-ninja.yml
|
2019-04-05 09:40:24 -05:00
|
|
|
- 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)
|
|
|
|
|
2019-04-05 19:52:26 -05:00
|
|
|
- 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)
|
|
|
|
|
2019-04-05 09:40:24 -05:00
|
|
|
# }
|