Wrong backup
This commit is contained in:
parent
36594e3759
commit
102693e1be
|
@ -3,396 +3,368 @@
|
||||||
variables:
|
variables:
|
||||||
releaseExamples: 'controlgallery cpp-multithread datetime drawtext histogram tester timer'
|
releaseExamples: 'controlgallery cpp-multithread datetime drawtext histogram tester timer'
|
||||||
|
|
||||||
strategy:
|
|
||||||
# targetname:
|
|
||||||
# os: 'fill this in'
|
|
||||||
# arch: 'fill this in'
|
|
||||||
# toolchain: 'fill this in'
|
|
||||||
# libtype: 'fill this in'
|
|
||||||
# vmImage: 'fill this in'
|
|
||||||
# python3Template: 'fill filename'
|
|
||||||
# depsAndNinjaTemplate: 'fill filename'
|
|
||||||
# beforeConfigure: 'fill this in'
|
|
||||||
# beforeBuild: 'fill this in'
|
|
||||||
# afterBuild: 'fill this in'
|
|
||||||
# artifactTemplate: 'fill filename'
|
|
||||||
# libfiles: 'fill this in'
|
|
||||||
# osHeader: 'fill this in'
|
|
||||||
linux_386_shared:
|
|
||||||
os: 'linux'
|
|
||||||
arch: '386'
|
|
||||||
libtype: 'shared'
|
|
||||||
vmImage: 'ubuntu-16.04'
|
|
||||||
python3Template: 'setup-python3.yml'
|
|
||||||
depsAndNinjaTemplate: 'linux-386-install-gtk-dev-ninja.yml'
|
|
||||||
beforeConfigure: 'export CFLAGS=-m32 CXXFLAGS=-m32 PKG_CONFIG_PATH=/usr/lib/i386-linux-gnu/pkgconfig'
|
|
||||||
artifactTemplate: 'artifacts.yml'
|
|
||||||
libfiles: 'libui.so.0'
|
|
||||||
osHeader: 'ui_unix.h'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
- job: $(join('_', [os, arch] + coalesce(toolchain, []) + [libtype]))
|
|
||||||
displayName: $(join(' ', [os, arch] + coalesce(toolchain, []) + [libtype]))
|
# linux {
|
||||||
|
|
||||||
|
- job: linux_386_shared
|
||||||
|
displayName: 'Linux 386 Shared'
|
||||||
pool:
|
pool:
|
||||||
vmImage: $(vmImage)
|
vmImage: 'ubuntu-16.04'
|
||||||
workspace:
|
workspace:
|
||||||
clean: all
|
clean: all
|
||||||
steps:
|
steps:
|
||||||
- template: azure-pipelines/$(python3Template)
|
- template: azure-pipelines/setup-python3.yml
|
||||||
- template: azure-pipelines/install-latest-meson.yml
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
- template: azure-pipelines/$(depsAndNinjaTemplate)
|
- template: azure-pipelines/linux-386-install-gtk-dev-ninja.yml
|
||||||
- template: azure-pipelines/configure.yml
|
- template: azure-pipelines/configure.yml
|
||||||
beforeConfigure: $(beforeConfigure)
|
parameters:
|
||||||
defaultLibrary: $(libtype)
|
beforeConfigure: export CFLAGS=-m32 CXXFLAGS=-m32 PKG_CONFIG_PATH=/usr/lib/i386-linux-gnu/pkgconfig
|
||||||
|
defaultLibrary: shared
|
||||||
|
- template: azure-pipelines/build.yml
|
||||||
|
- template: azure-pipelines/artifacts.yml
|
||||||
|
parameters:
|
||||||
|
os: linux
|
||||||
|
arch: 386
|
||||||
|
libtype: shared
|
||||||
|
libfiles: libui.so.0
|
||||||
|
osHeader: ui_unix.h
|
||||||
|
|
||||||
|
- job: linux_386_static
|
||||||
|
displayName: 'Linux 386 Static'
|
||||||
|
pool:
|
||||||
|
vmImage: 'ubuntu-16.04'
|
||||||
|
workspace:
|
||||||
|
clean: all
|
||||||
|
steps:
|
||||||
|
- template: azure-pipelines/setup-python3.yml
|
||||||
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
|
- template: azure-pipelines/linux-386-install-gtk-dev-ninja.yml
|
||||||
|
- template: azure-pipelines/configure.yml
|
||||||
|
parameters:
|
||||||
|
beforeConfigure: export CFLAGS=-m32 CXXFLAGS=-m32 PKG_CONFIG_PATH=/usr/lib/i386-linux-gnu/pkgconfig
|
||||||
|
defaultLibrary: static
|
||||||
|
- template: azure-pipelines/build.yml
|
||||||
|
- template: azure-pipelines/artifacts.yml
|
||||||
|
parameters:
|
||||||
|
os: linux
|
||||||
|
arch: 386
|
||||||
|
libtype: static
|
||||||
|
libfiles: libui.a
|
||||||
|
osHeader: ui_unix.h
|
||||||
|
|
||||||
|
- job: linux_amd64_shared
|
||||||
|
displayName: 'Linux amd64 Shared'
|
||||||
|
pool:
|
||||||
|
vmImage: 'ubuntu-16.04'
|
||||||
|
workspace:
|
||||||
|
clean: all
|
||||||
|
steps:
|
||||||
|
- template: azure-pipelines/setup-python3.yml
|
||||||
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
|
- template: azure-pipelines/linux-install-gtk-dev-ninja.yml
|
||||||
|
- template: azure-pipelines/configure.yml
|
||||||
|
parameters:
|
||||||
|
defaultLibrary: shared
|
||||||
|
- template: azure-pipelines/build.yml
|
||||||
|
- template: azure-pipelines/artifacts.yml
|
||||||
|
parameters:
|
||||||
|
os: linux
|
||||||
|
arch: amd64
|
||||||
|
libtype: shared
|
||||||
|
libfiles: libui.so.0
|
||||||
|
osHeader: ui_unix.h
|
||||||
|
|
||||||
|
- job: linux_amd64_static
|
||||||
|
displayName: 'Linux amd64 Static'
|
||||||
|
pool:
|
||||||
|
vmImage: 'ubuntu-16.04'
|
||||||
|
workspace:
|
||||||
|
clean: all
|
||||||
|
steps:
|
||||||
|
- template: azure-pipelines/setup-python3.yml
|
||||||
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
|
- template: azure-pipelines/linux-install-gtk-dev-ninja.yml
|
||||||
|
- template: azure-pipelines/configure.yml
|
||||||
|
parameters:
|
||||||
|
defaultLibrary: static
|
||||||
|
- template: azure-pipelines/build.yml
|
||||||
|
- template: azure-pipelines/artifacts.yml
|
||||||
|
parameters:
|
||||||
|
os: linux
|
||||||
|
arch: amd64
|
||||||
|
libtype: static
|
||||||
|
libfiles: libui.a
|
||||||
|
osHeader: ui_unix.h
|
||||||
|
|
||||||
|
# }
|
||||||
|
|
||||||
|
# windows vs2015 {
|
||||||
|
|
||||||
|
- job: windows_386_msvc2015_shared
|
||||||
|
displayName: 'Windows 386 MSVC2015 Shared'
|
||||||
|
pool:
|
||||||
|
vmImage: 'vs2015-win2012r2'
|
||||||
|
workspace:
|
||||||
|
clean: all
|
||||||
|
steps:
|
||||||
|
- template: azure-pipelines/vs2015-install-python3.yml
|
||||||
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
|
- template: azure-pipelines/windows-install-ninja.yml
|
||||||
|
- template: azure-pipelines/configure.yml
|
||||||
|
parameters:
|
||||||
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
||||||
|
defaultLibrary: shared
|
||||||
- template: azure-pipelines/build.yml
|
- template: azure-pipelines/build.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeBuild: $(beforeBuild)
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
||||||
afterBuild: $(afterBuild)
|
- template: azure-pipelines/windows-artifacts.yml
|
||||||
- template: azure-pipelines/$(artifactTemplate)
|
|
||||||
parameters:
|
parameters:
|
||||||
os: $(os)
|
os: windows
|
||||||
arch: $(arch)
|
arch: 386
|
||||||
toolchain: $(toolchain)
|
toolchain: msvc2015
|
||||||
libtype: $(libtype)
|
libtype: shared
|
||||||
libfiles: $(libfiles)
|
libfiles: libui.dll libui.exp libui.lib
|
||||||
osHeader: $(osHeader)
|
osHeader: ui_windows.h
|
||||||
|
|
||||||
## linux {
|
- job: windows_386_msvc2015_static
|
||||||
#- job: linux_386_static
|
displayName: 'Windows 386 MSVC2015 Static'
|
||||||
# displayName: 'Linux 386 Static'
|
pool:
|
||||||
# pool:
|
vmImage: 'vs2015-win2012r2'
|
||||||
# vmImage: 'ubuntu-16.04'
|
workspace:
|
||||||
# workspace:
|
clean: all
|
||||||
# clean: all
|
steps:
|
||||||
# steps:
|
- template: azure-pipelines/vs2015-install-python3.yml
|
||||||
# - template: azure-pipelines/setup-python3.yml
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
# - template: azure-pipelines/install-latest-meson.yml
|
- template: azure-pipelines/windows-install-ninja.yml
|
||||||
# - template: azure-pipelines/linux-386-install-gtk-dev-ninja.yml
|
- template: azure-pipelines/configure.yml
|
||||||
# - template: azure-pipelines/configure.yml
|
parameters:
|
||||||
# parameters:
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
||||||
# beforeConfigure: export CFLAGS=-m32 CXXFLAGS=-m32 PKG_CONFIG_PATH=/usr/lib/i386-linux-gnu/pkgconfig
|
defaultLibrary: static
|
||||||
# defaultLibrary: static
|
- template: azure-pipelines/build.yml
|
||||||
# - template: azure-pipelines/build.yml
|
parameters:
|
||||||
# - template: azure-pipelines/artifacts.yml
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
||||||
# parameters:
|
afterBuild: ren build\meson-out\libui.a libui.lib
|
||||||
# os: linux
|
- template: azure-pipelines/windows-artifacts.yml
|
||||||
# arch: 386
|
parameters:
|
||||||
# libtype: static
|
os: windows
|
||||||
# libfiles: libui.a
|
arch: 386
|
||||||
# osHeader: ui_unix.h
|
toolchain: msvc2015
|
||||||
#
|
libtype: static
|
||||||
#- job: linux_amd64_shared
|
libfiles: libui.lib
|
||||||
# displayName: 'Linux amd64 Shared'
|
osHeader: ui_windows.h
|
||||||
# pool:
|
|
||||||
# vmImage: 'ubuntu-16.04'
|
- job: windows_amd64_msvc2015_shared
|
||||||
# workspace:
|
displayName: 'Windows amd64 MSVC2015 Shared'
|
||||||
# clean: all
|
pool:
|
||||||
# steps:
|
vmImage: 'vs2015-win2012r2'
|
||||||
# - template: azure-pipelines/setup-python3.yml
|
workspace:
|
||||||
# - template: azure-pipelines/install-latest-meson.yml
|
clean: all
|
||||||
# - template: azure-pipelines/linux-install-gtk-dev-ninja.yml
|
steps:
|
||||||
# - template: azure-pipelines/configure.yml
|
- template: azure-pipelines/vs2015-install-python3.yml
|
||||||
# parameters:
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
# defaultLibrary: shared
|
- template: azure-pipelines/windows-install-ninja.yml
|
||||||
# - template: azure-pipelines/build.yml
|
- template: azure-pipelines/configure.yml
|
||||||
# - template: azure-pipelines/artifacts.yml
|
parameters:
|
||||||
# parameters:
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
||||||
# os: linux
|
defaultLibrary: shared
|
||||||
# arch: amd64
|
- template: azure-pipelines/build.yml
|
||||||
# libtype: shared
|
parameters:
|
||||||
# libfiles: libui.so.0
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
||||||
# osHeader: ui_unix.h
|
- template: azure-pipelines/windows-artifacts.yml
|
||||||
#
|
parameters:
|
||||||
#- job: linux_amd64_static
|
os: windows
|
||||||
# displayName: 'Linux amd64 Static'
|
arch: amd64
|
||||||
# pool:
|
toolchain: msvc2015
|
||||||
# vmImage: 'ubuntu-16.04'
|
libtype: shared
|
||||||
# workspace:
|
libfiles: libui.dll libui.exp libui.lib
|
||||||
# clean: all
|
osHeader: ui_windows.h
|
||||||
# steps:
|
|
||||||
# - template: azure-pipelines/setup-python3.yml
|
- job: windows_amd64_msvc2015_static
|
||||||
# - template: azure-pipelines/install-latest-meson.yml
|
displayName: 'Windows amd64 MSVC2015 Static'
|
||||||
# - template: azure-pipelines/linux-install-gtk-dev-ninja.yml
|
pool:
|
||||||
# - template: azure-pipelines/configure.yml
|
vmImage: 'vs2015-win2012r2'
|
||||||
# parameters:
|
workspace:
|
||||||
# defaultLibrary: static
|
clean: all
|
||||||
# - template: azure-pipelines/build.yml
|
steps:
|
||||||
# - template: azure-pipelines/artifacts.yml
|
- template: azure-pipelines/vs2015-install-python3.yml
|
||||||
# parameters:
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
# os: linux
|
- template: azure-pipelines/windows-install-ninja.yml
|
||||||
# arch: amd64
|
- template: azure-pipelines/configure.yml
|
||||||
# libtype: static
|
parameters:
|
||||||
# libfiles: libui.a
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
||||||
# osHeader: ui_unix.h
|
defaultLibrary: static
|
||||||
#
|
- template: azure-pipelines/build.yml
|
||||||
## }
|
parameters:
|
||||||
#
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
||||||
## windows vs2015 {
|
afterBuild: ren build\meson-out\libui.a libui.lib
|
||||||
#
|
- template: azure-pipelines/windows-artifacts.yml
|
||||||
#- job: windows_386_msvc2015_shared
|
parameters:
|
||||||
# displayName: 'Windows 386 MSVC2015 Shared'
|
os: windows
|
||||||
# pool:
|
arch: amd64
|
||||||
# vmImage: 'vs2015-win2012r2'
|
toolchain: msvc2015
|
||||||
# workspace:
|
libtype: static
|
||||||
# clean: all
|
libfiles: libui.lib
|
||||||
# steps:
|
osHeader: ui_windows.h
|
||||||
# - template: azure-pipelines/vs2015-install-python3.yml
|
|
||||||
# - template: azure-pipelines/install-latest-meson.yml
|
# }
|
||||||
# - template: azure-pipelines/windows-install-ninja.yml
|
|
||||||
# - template: azure-pipelines/configure.yml
|
# windows vs2017 {
|
||||||
# parameters:
|
|
||||||
# beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
- job: windows_386_msvc2017_shared
|
||||||
# defaultLibrary: shared
|
displayName: 'Windows 386 MSVC2017 Shared'
|
||||||
# - template: azure-pipelines/build.yml
|
pool:
|
||||||
# parameters:
|
vmImage: 'vs2017-win2016'
|
||||||
# beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
workspace:
|
||||||
# - template: azure-pipelines/windows-artifacts.yml
|
clean: all
|
||||||
# parameters:
|
steps:
|
||||||
# os: windows
|
- template: azure-pipelines/setup-python3.yml
|
||||||
# arch: 386
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
# toolchain: msvc2015
|
- template: azure-pipelines/windows-install-ninja.yml
|
||||||
# libtype: shared
|
- template: azure-pipelines/configure.yml
|
||||||
# libfiles: libui.dll libui.exp libui.lib
|
parameters:
|
||||||
# osHeader: ui_windows.h
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
||||||
#
|
defaultLibrary: shared
|
||||||
#- job: windows_386_msvc2015_static
|
- template: azure-pipelines/build.yml
|
||||||
# displayName: 'Windows 386 MSVC2015 Static'
|
parameters:
|
||||||
# pool:
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
||||||
# vmImage: 'vs2015-win2012r2'
|
- template: azure-pipelines/windows-artifacts.yml
|
||||||
# workspace:
|
parameters:
|
||||||
# clean: all
|
os: windows
|
||||||
# steps:
|
arch: 386
|
||||||
# - template: azure-pipelines/vs2015-install-python3.yml
|
toolchain: msvc2017
|
||||||
# - template: azure-pipelines/install-latest-meson.yml
|
libtype: shared
|
||||||
# - template: azure-pipelines/windows-install-ninja.yml
|
libfiles: libui.dll libui.exp libui.lib
|
||||||
# - template: azure-pipelines/configure.yml
|
osHeader: ui_windows.h
|
||||||
# parameters:
|
|
||||||
# beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
- job: windows_386_msvc2017_static
|
||||||
# defaultLibrary: static
|
displayName: 'Windows 386 MSVC2017 Static'
|
||||||
# - template: azure-pipelines/build.yml
|
pool:
|
||||||
# parameters:
|
vmImage: 'vs2017-win2016'
|
||||||
# beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
workspace:
|
||||||
# afterBuild: ren build\meson-out\libui.a libui.lib
|
clean: all
|
||||||
# - template: azure-pipelines/windows-artifacts.yml
|
steps:
|
||||||
# parameters:
|
- template: azure-pipelines/setup-python3.yml
|
||||||
# os: windows
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
# arch: 386
|
- template: azure-pipelines/windows-install-ninja.yml
|
||||||
# toolchain: msvc2015
|
- template: azure-pipelines/configure.yml
|
||||||
# libtype: static
|
parameters:
|
||||||
# libfiles: libui.lib
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
||||||
# osHeader: ui_windows.h
|
defaultLibrary: static
|
||||||
#
|
- template: azure-pipelines/build.yml
|
||||||
#- job: windows_amd64_msvc2015_shared
|
parameters:
|
||||||
# displayName: 'Windows amd64 MSVC2015 Shared'
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
||||||
# pool:
|
afterBuild: ren build\meson-out\libui.a libui.lib
|
||||||
# vmImage: 'vs2015-win2012r2'
|
- template: azure-pipelines/windows-artifacts.yml
|
||||||
# workspace:
|
parameters:
|
||||||
# clean: all
|
os: windows
|
||||||
# steps:
|
arch: 386
|
||||||
# - template: azure-pipelines/vs2015-install-python3.yml
|
toolchain: msvc2017
|
||||||
# - template: azure-pipelines/install-latest-meson.yml
|
libtype: static
|
||||||
# - template: azure-pipelines/windows-install-ninja.yml
|
libfiles: libui.lib
|
||||||
# - template: azure-pipelines/configure.yml
|
osHeader: ui_windows.h
|
||||||
# parameters:
|
|
||||||
# beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
- job: windows_amd64_msvc2017_shared
|
||||||
# defaultLibrary: shared
|
displayName: 'Windows amd64 MSVC2017 Shared'
|
||||||
# - template: azure-pipelines/build.yml
|
pool:
|
||||||
# parameters:
|
vmImage: 'vs2017-win2016'
|
||||||
# beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
workspace:
|
||||||
# - template: azure-pipelines/windows-artifacts.yml
|
clean: all
|
||||||
# parameters:
|
steps:
|
||||||
# os: windows
|
- template: azure-pipelines/setup-python3.yml
|
||||||
# arch: amd64
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
# toolchain: msvc2015
|
- template: azure-pipelines/windows-install-ninja.yml
|
||||||
# libtype: shared
|
- template: azure-pipelines/configure.yml
|
||||||
# libfiles: libui.dll libui.exp libui.lib
|
parameters:
|
||||||
# osHeader: ui_windows.h
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
||||||
#
|
defaultLibrary: shared
|
||||||
#- job: windows_amd64_msvc2015_static
|
- template: azure-pipelines/build.yml
|
||||||
# displayName: 'Windows amd64 MSVC2015 Static'
|
parameters:
|
||||||
# pool:
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
||||||
# vmImage: 'vs2015-win2012r2'
|
- template: azure-pipelines/windows-artifacts.yml
|
||||||
# workspace:
|
parameters:
|
||||||
# clean: all
|
os: windows
|
||||||
# steps:
|
arch: amd64
|
||||||
# - template: azure-pipelines/vs2015-install-python3.yml
|
toolchain: msvc2017
|
||||||
# - template: azure-pipelines/install-latest-meson.yml
|
libtype: shared
|
||||||
# - template: azure-pipelines/windows-install-ninja.yml
|
libfiles: libui.dll libui.exp libui.lib
|
||||||
# - template: azure-pipelines/configure.yml
|
osHeader: ui_windows.h
|
||||||
# parameters:
|
|
||||||
# beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
- job: windows_amd64_msvc2017_static
|
||||||
# defaultLibrary: static
|
displayName: 'Windows amd64 MSVC2017 Static'
|
||||||
# - template: azure-pipelines/build.yml
|
pool:
|
||||||
# parameters:
|
vmImage: 'vs2017-win2016'
|
||||||
# beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
workspace:
|
||||||
# afterBuild: ren build\meson-out\libui.a libui.lib
|
clean: all
|
||||||
# - template: azure-pipelines/windows-artifacts.yml
|
steps:
|
||||||
# parameters:
|
- template: azure-pipelines/setup-python3.yml
|
||||||
# os: windows
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
# arch: amd64
|
- template: azure-pipelines/windows-install-ninja.yml
|
||||||
# toolchain: msvc2015
|
- template: azure-pipelines/configure.yml
|
||||||
# libtype: static
|
parameters:
|
||||||
# libfiles: libui.lib
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
||||||
# osHeader: ui_windows.h
|
defaultLibrary: static
|
||||||
#
|
- template: azure-pipelines/build.yml
|
||||||
## }
|
parameters:
|
||||||
#
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
||||||
## windows vs2017 {
|
afterBuild: ren build\meson-out\libui.a libui.lib
|
||||||
#
|
- template: azure-pipelines/windows-artifacts.yml
|
||||||
#- job: windows_386_msvc2017_shared
|
parameters:
|
||||||
# displayName: 'Windows 386 MSVC2017 Shared'
|
os: windows
|
||||||
# pool:
|
arch: amd64
|
||||||
# vmImage: 'vs2017-win2016'
|
toolchain: msvc2017
|
||||||
# workspace:
|
libtype: static
|
||||||
# clean: all
|
libfiles: libui.lib
|
||||||
# steps:
|
osHeader: ui_windows.h
|
||||||
# - template: azure-pipelines/setup-python3.yml
|
|
||||||
# - template: azure-pipelines/install-latest-meson.yml
|
# }
|
||||||
# - template: azure-pipelines/windows-install-ninja.yml
|
|
||||||
# - template: azure-pipelines/configure.yml
|
# mac {
|
||||||
# parameters:
|
|
||||||
# beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
# TODO beforeConfigure/beforeBuild: export SDKROOT=$(xcodebuild -version -sdk macosx10.13 Path)?
|
||||||
# defaultLibrary: shared
|
|
||||||
# - template: azure-pipelines/build.yml
|
- job: darwin_amd64_shared
|
||||||
# parameters:
|
displayName: 'Darwin amd64 Shared'
|
||||||
# beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
pool:
|
||||||
# - template: azure-pipelines/windows-artifacts.yml
|
vmImage: 'macos-10.13'
|
||||||
# parameters:
|
workspace:
|
||||||
# os: windows
|
clean: all
|
||||||
# arch: 386
|
steps:
|
||||||
# toolchain: msvc2017
|
- template: azure-pipelines/setup-python3.yml
|
||||||
# libtype: shared
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
# libfiles: libui.dll libui.exp libui.lib
|
- template: azure-pipelines/darwin-install-ninja.yml
|
||||||
# osHeader: ui_windows.h
|
- template: azure-pipelines/configure.yml
|
||||||
#
|
parameters:
|
||||||
#- job: windows_386_msvc2017_static
|
defaultLibrary: shared
|
||||||
# displayName: 'Windows 386 MSVC2017 Static'
|
- template: azure-pipelines/build.yml
|
||||||
# pool:
|
- template: azure-pipelines/artifacts.yml
|
||||||
# vmImage: 'vs2017-win2016'
|
parameters:
|
||||||
# workspace:
|
os: darwin
|
||||||
# clean: all
|
arch: amd64
|
||||||
# steps:
|
libtype: shared
|
||||||
# - template: azure-pipelines/setup-python3.yml
|
libfiles: libui.A.dylib
|
||||||
# - template: azure-pipelines/install-latest-meson.yml
|
osHeader: ui_darwin.h
|
||||||
# - template: azure-pipelines/windows-install-ninja.yml
|
|
||||||
# - template: azure-pipelines/configure.yml
|
- job: darwin_amd64_static
|
||||||
# parameters:
|
displayName: 'Darwin amd64 Static'
|
||||||
# beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
pool:
|
||||||
# defaultLibrary: static
|
vmImage: 'macos-10.13'
|
||||||
# - template: azure-pipelines/build.yml
|
workspace:
|
||||||
# parameters:
|
clean: all
|
||||||
# beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
steps:
|
||||||
# afterBuild: ren build\meson-out\libui.a libui.lib
|
- template: azure-pipelines/setup-python3.yml
|
||||||
# - template: azure-pipelines/windows-artifacts.yml
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
# parameters:
|
- template: azure-pipelines/darwin-install-ninja.yml
|
||||||
# os: windows
|
- template: azure-pipelines/configure.yml
|
||||||
# arch: 386
|
parameters:
|
||||||
# toolchain: msvc2017
|
defaultLibrary: static
|
||||||
# libtype: static
|
- template: azure-pipelines/build.yml
|
||||||
# libfiles: libui.lib
|
- template: azure-pipelines/artifacts.yml
|
||||||
# osHeader: ui_windows.h
|
parameters:
|
||||||
#
|
os: darwin
|
||||||
#- job: windows_amd64_msvc2017_shared
|
arch: amd64
|
||||||
# displayName: 'Windows amd64 MSVC2017 Shared'
|
libtype: static
|
||||||
# pool:
|
libfiles: libui.a
|
||||||
# vmImage: 'vs2017-win2016'
|
osHeader: ui_darwin.h
|
||||||
# workspace:
|
|
||||||
# clean: all
|
# }
|
||||||
# steps:
|
|
||||||
# - template: azure-pipelines/setup-python3.yml
|
|
||||||
# - template: azure-pipelines/install-latest-meson.yml
|
|
||||||
# - template: azure-pipelines/windows-install-ninja.yml
|
|
||||||
# - 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
|
|
||||||
# - template: azure-pipelines/build.yml
|
|
||||||
# parameters:
|
|
||||||
# beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
|
||||||
# - template: azure-pipelines/windows-artifacts.yml
|
|
||||||
# parameters:
|
|
||||||
# os: windows
|
|
||||||
# arch: amd64
|
|
||||||
# toolchain: msvc2017
|
|
||||||
# libtype: shared
|
|
||||||
# libfiles: libui.dll libui.exp libui.lib
|
|
||||||
# osHeader: ui_windows.h
|
|
||||||
#
|
|
||||||
#- job: windows_amd64_msvc2017_static
|
|
||||||
# displayName: 'Windows amd64 MSVC2017 Static'
|
|
||||||
# pool:
|
|
||||||
# vmImage: 'vs2017-win2016'
|
|
||||||
# workspace:
|
|
||||||
# clean: all
|
|
||||||
# steps:
|
|
||||||
# - template: azure-pipelines/setup-python3.yml
|
|
||||||
# - template: azure-pipelines/install-latest-meson.yml
|
|
||||||
# - template: azure-pipelines/windows-install-ninja.yml
|
|
||||||
# - 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
|
|
||||||
# - template: azure-pipelines/build.yml
|
|
||||||
# parameters:
|
|
||||||
# beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
|
||||||
# afterBuild: ren build\meson-out\libui.a libui.lib
|
|
||||||
# - template: azure-pipelines/windows-artifacts.yml
|
|
||||||
# parameters:
|
|
||||||
# os: windows
|
|
||||||
# arch: amd64
|
|
||||||
# toolchain: msvc2017
|
|
||||||
# libtype: static
|
|
||||||
# libfiles: libui.lib
|
|
||||||
# osHeader: ui_windows.h
|
|
||||||
#
|
|
||||||
## }
|
|
||||||
#
|
|
||||||
## mac {
|
|
||||||
#
|
|
||||||
## TODO beforeConfigure/beforeBuild: export SDKROOT=$(xcodebuild -version -sdk macosx10.13 Path)?
|
|
||||||
#
|
|
||||||
#- job: darwin_amd64_shared
|
|
||||||
# displayName: 'Darwin amd64 Shared'
|
|
||||||
# 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:
|
|
||||||
# defaultLibrary: shared
|
|
||||||
# - template: azure-pipelines/build.yml
|
|
||||||
# - template: azure-pipelines/artifacts.yml
|
|
||||||
# parameters:
|
|
||||||
# os: darwin
|
|
||||||
# arch: amd64
|
|
||||||
# libtype: shared
|
|
||||||
# libfiles: libui.A.dylib
|
|
||||||
# osHeader: ui_darwin.h
|
|
||||||
#
|
|
||||||
#- job: darwin_amd64_static
|
|
||||||
# displayName: 'Darwin amd64 Static'
|
|
||||||
# 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:
|
|
||||||
# defaultLibrary: static
|
|
||||||
# - template: azure-pipelines/build.yml
|
|
||||||
# - template: azure-pipelines/artifacts.yml
|
|
||||||
# parameters:
|
|
||||||
# os: darwin
|
|
||||||
# arch: amd64
|
|
||||||
# libtype: static
|
|
||||||
# libfiles: libui.a
|
|
||||||
# osHeader: ui_darwin.h
|
|
||||||
#
|
|
||||||
## }
|
|
||||||
|
|
Loading…
Reference in New Issue