Let's try MinGW-w64!
This commit is contained in:
parent
21d4ad54b6
commit
1500c750b6
|
@ -4,61 +4,8 @@ variables:
|
||||||
releaseExamples: 'controlgallery cpp-multithread datetime drawtext histogram tester timer'
|
releaseExamples: 'controlgallery cpp-multithread datetime drawtext histogram tester timer'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
- job: windows_386_msvc2015_shared
|
- job: windows_386_mingw_shared
|
||||||
displayName: 'Windows 386 MSVC2015 Shared'
|
displayName: 'Windows 386 MinGW-w64 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.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
|
|
||||||
parameters:
|
|
||||||
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
|
||||||
- template: azure-pipelines/windows-artifacts.yml
|
|
||||||
parameters:
|
|
||||||
os: windows
|
|
||||||
arch: 386
|
|
||||||
toolchain: msvc2015
|
|
||||||
libtype: shared
|
|
||||||
libfiles: libui.dll libui.exp libui.lib
|
|
||||||
osHeader: ui_windows.h
|
|
||||||
|
|
||||||
- job: windows_386_msvc2015_static
|
|
||||||
displayName: 'Windows 386 MSVC2015 Static'
|
|
||||||
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.yml
|
|
||||||
- template: azure-pipelines/configure.yml
|
|
||||||
parameters:
|
|
||||||
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
|
||||||
defaultLibrary: static
|
|
||||||
- template: azure-pipelines/build.yml
|
|
||||||
parameters:
|
|
||||||
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
|
||||||
afterBuild: ren build\meson-out\libui.a libui.lib
|
|
||||||
- template: azure-pipelines/windows-artifacts.yml
|
|
||||||
parameters:
|
|
||||||
os: windows
|
|
||||||
arch: 386
|
|
||||||
toolchain: msvc2015
|
|
||||||
libtype: static
|
|
||||||
libfiles: libui.lib
|
|
||||||
osHeader: ui_windows.h
|
|
||||||
|
|
||||||
- job: windows_386_msvc2017_shared
|
|
||||||
displayName: 'Windows 386 MSVC2017 Shared'
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'vs2017-win2016'
|
vmImage: 'vs2017-win2016'
|
||||||
workspace:
|
workspace:
|
||||||
|
@ -66,25 +13,27 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- template: azure-pipelines/setup-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.yml
|
- template: azure-pipelines/windows-install-ninja.yml
|
||||||
|
- template: azure-pipelines/windows-setup-mingw.yml
|
||||||
|
parameters:
|
||||||
|
which: mingw32
|
||||||
- template: azure-pipelines/configure.yml
|
- template: azure-pipelines/configure.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
|
||||||
defaultLibrary: shared
|
defaultLibrary: shared
|
||||||
- template: azure-pipelines/build.yml
|
- template: azure-pipelines/build.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
afterBuild: dir build\meson-out
|
||||||
- template: azure-pipelines/windows-artifacts.yml
|
# - template: azure-pipelines/windows-artifacts.yml
|
||||||
parameters:
|
# parameters:
|
||||||
os: windows
|
# os: windows
|
||||||
arch: 386
|
# arch: 386
|
||||||
toolchain: msvc2017
|
# toolchain: mingw
|
||||||
libtype: shared
|
# libtype: shared
|
||||||
libfiles: libui.dll libui.exp libui.lib
|
# libfiles: libui.dll
|
||||||
osHeader: ui_windows.h
|
# osHeader: ui_windows.h
|
||||||
|
|
||||||
- job: windows_386_msvc2017_static
|
- job: windows_386_mingw_static
|
||||||
displayName: 'Windows 386 MSVC2017 Static'
|
displayName: 'Windows 386 MinGW-w64 Static'
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'vs2017-win2016'
|
vmImage: 'vs2017-win2016'
|
||||||
workspace:
|
workspace:
|
||||||
|
@ -92,20 +41,22 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- template: azure-pipelines/setup-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.yml
|
- template: azure-pipelines/windows-install-ninja.yml
|
||||||
|
- template: azure-pipelines/windows-setup-mingw.yml
|
||||||
|
parameters:
|
||||||
|
which: mingw32
|
||||||
- template: azure-pipelines/configure.yml
|
- template: azure-pipelines/configure.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
|
||||||
defaultLibrary: static
|
defaultLibrary: static
|
||||||
- template: azure-pipelines/build.yml
|
- template: azure-pipelines/build.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
afterBuild: dir build\meson-out
|
||||||
afterBuild: ren build\meson-out\libui.a libui.lib
|
# afterBuild: ren build\meson-out\libui.a libui.lib
|
||||||
- template: azure-pipelines/windows-artifacts.yml
|
# - template: azure-pipelines/windows-artifacts.yml
|
||||||
parameters:
|
# parameters:
|
||||||
os: windows
|
# os: windows
|
||||||
arch: 386
|
# arch: 386
|
||||||
toolchain: msvc2017
|
# toolchain: mingw
|
||||||
libtype: static
|
# libtype: static
|
||||||
libfiles: libui.lib
|
# libfiles: libui.lib
|
||||||
osHeader: ui_windows.h
|
# osHeader: ui_windows.h
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
# 7 april 2019
|
||||||
|
|
||||||
|
parameters:
|
||||||
|
which: 'must-be-specified'
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- powershell: |
|
||||||
|
$chocopath = where.exe choco.exe | Get-Item
|
||||||
|
$chocopath = Join-Path $chocopath.Directory "install" ${{ parameters.which }} "bin"
|
||||||
|
echo "##vso[task.prependpath]$chocopath"
|
||||||
|
displayName: 'Set up MinGW-w64'
|
|
@ -68,7 +68,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- template: azure-pipelines/setup-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/darwin-install.yml
|
- template: azure-pipelines/darwin-install-ninja.yml
|
||||||
- template: azure-pipelines/configure.yml
|
- template: azure-pipelines/configure.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.14 Path)
|
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.14 Path)
|
||||||
|
@ -93,7 +93,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- template: azure-pipelines/setup-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/darwin-install.yml
|
- template: azure-pipelines/darwin-install-ninja.yml
|
||||||
- template: azure-pipelines/configure.yml
|
- template: azure-pipelines/configure.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.14 Path)
|
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.14 Path)
|
||||||
|
|
|
@ -4,6 +4,59 @@ jobs:
|
||||||
|
|
||||||
# vs2015 {
|
# 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
|
||||||
|
parameters:
|
||||||
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
||||||
|
- template: azure-pipelines/windows-artifacts.yml
|
||||||
|
parameters:
|
||||||
|
os: windows
|
||||||
|
arch: 386
|
||||||
|
toolchain: msvc2015
|
||||||
|
libtype: shared
|
||||||
|
libfiles: libui.dll libui.exp libui.lib
|
||||||
|
osHeader: ui_windows.h
|
||||||
|
|
||||||
|
- job: windows_386_msvc2015_static
|
||||||
|
displayName: 'Windows 386 MSVC2015 Static'
|
||||||
|
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: static
|
||||||
|
- template: azure-pipelines/build.yml
|
||||||
|
parameters:
|
||||||
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
|
||||||
|
afterBuild: ren build\meson-out\libui.a libui.lib
|
||||||
|
- template: azure-pipelines/windows-artifacts.yml
|
||||||
|
parameters:
|
||||||
|
os: windows
|
||||||
|
arch: 386
|
||||||
|
toolchain: msvc2015
|
||||||
|
libtype: static
|
||||||
|
libfiles: libui.lib
|
||||||
|
osHeader: ui_windows.h
|
||||||
|
|
||||||
- job: windows_amd64_msvc2015_shared
|
- job: windows_amd64_msvc2015_shared
|
||||||
displayName: 'Windows amd64 MSVC2015 Shared'
|
displayName: 'Windows amd64 MSVC2015 Shared'
|
||||||
pool:
|
pool:
|
||||||
|
@ -13,7 +66,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- template: azure-pipelines/vs2015-install-python3.yml
|
- template: azure-pipelines/vs2015-install-python3.yml
|
||||||
- template: azure-pipelines/install-latest-meson.yml
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
- template: azure-pipelines/windows-install.yml
|
- template: azure-pipelines/windows-install-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" amd64
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
||||||
|
@ -21,6 +74,14 @@ jobs:
|
||||||
- template: azure-pipelines/build.yml
|
- template: azure-pipelines/build.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
||||||
|
- template: azure-pipelines/windows-artifacts.yml
|
||||||
|
parameters:
|
||||||
|
os: windows
|
||||||
|
arch: amd64
|
||||||
|
toolchain: msvc2015
|
||||||
|
libtype: shared
|
||||||
|
libfiles: libui.dll libui.exp libui.lib
|
||||||
|
osHeader: ui_windows.h
|
||||||
|
|
||||||
- job: windows_amd64_msvc2015_static
|
- job: windows_amd64_msvc2015_static
|
||||||
displayName: 'Windows amd64 MSVC2015 Static'
|
displayName: 'Windows amd64 MSVC2015 Static'
|
||||||
|
@ -31,7 +92,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- template: azure-pipelines/vs2015-install-python3.yml
|
- template: azure-pipelines/vs2015-install-python3.yml
|
||||||
- template: azure-pipelines/install-latest-meson.yml
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
- template: azure-pipelines/windows-install.yml
|
- template: azure-pipelines/windows-install-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" amd64
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
||||||
|
@ -39,11 +100,73 @@ jobs:
|
||||||
- template: azure-pipelines/build.yml
|
- template: azure-pipelines/build.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
||||||
|
afterBuild: ren build\meson-out\libui.a libui.lib
|
||||||
|
- template: azure-pipelines/windows-artifacts.yml
|
||||||
|
parameters:
|
||||||
|
os: windows
|
||||||
|
arch: amd64
|
||||||
|
toolchain: msvc2015
|
||||||
|
libtype: static
|
||||||
|
libfiles: libui.lib
|
||||||
|
osHeader: ui_windows.h
|
||||||
|
|
||||||
# }
|
# }
|
||||||
|
|
||||||
# vs2017 {
|
# vs2017 {
|
||||||
|
|
||||||
|
- job: windows_386_msvc2017_shared
|
||||||
|
displayName: 'Windows 386 MSVC2017 Shared'
|
||||||
|
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" x86
|
||||||
|
defaultLibrary: shared
|
||||||
|
- template: azure-pipelines/build.yml
|
||||||
|
parameters:
|
||||||
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
||||||
|
- template: azure-pipelines/windows-artifacts.yml
|
||||||
|
parameters:
|
||||||
|
os: windows
|
||||||
|
arch: 386
|
||||||
|
toolchain: msvc2017
|
||||||
|
libtype: shared
|
||||||
|
libfiles: libui.dll libui.exp libui.lib
|
||||||
|
osHeader: ui_windows.h
|
||||||
|
|
||||||
|
- job: windows_386_msvc2017_static
|
||||||
|
displayName: 'Windows 386 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" x86
|
||||||
|
defaultLibrary: static
|
||||||
|
- template: azure-pipelines/build.yml
|
||||||
|
parameters:
|
||||||
|
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
|
||||||
|
afterBuild: ren build\meson-out\libui.a libui.lib
|
||||||
|
- template: azure-pipelines/windows-artifacts.yml
|
||||||
|
parameters:
|
||||||
|
os: windows
|
||||||
|
arch: 386
|
||||||
|
toolchain: msvc2017
|
||||||
|
libtype: static
|
||||||
|
libfiles: libui.lib
|
||||||
|
osHeader: ui_windows.h
|
||||||
|
|
||||||
- job: windows_amd64_msvc2017_shared
|
- job: windows_amd64_msvc2017_shared
|
||||||
displayName: 'Windows amd64 MSVC2017 Shared'
|
displayName: 'Windows amd64 MSVC2017 Shared'
|
||||||
pool:
|
pool:
|
||||||
|
@ -53,7 +176,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- template: azure-pipelines/setup-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.yml
|
- template: azure-pipelines/windows-install-ninja.yml
|
||||||
- template: azure-pipelines/configure.yml
|
- template: azure-pipelines/configure.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
||||||
|
@ -61,6 +184,14 @@ jobs:
|
||||||
- template: azure-pipelines/build.yml
|
- template: azure-pipelines/build.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
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
|
- job: windows_amd64_msvc2017_static
|
||||||
displayName: 'Windows amd64 MSVC2017 Static'
|
displayName: 'Windows amd64 MSVC2017 Static'
|
||||||
|
@ -71,7 +202,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- template: azure-pipelines/setup-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.yml
|
- template: azure-pipelines/windows-install-ninja.yml
|
||||||
- template: azure-pipelines/configure.yml
|
- template: azure-pipelines/configure.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
beforeConfigure: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
||||||
|
@ -79,6 +210,15 @@ jobs:
|
||||||
- template: azure-pipelines/build.yml
|
- template: azure-pipelines/build.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeBuild: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
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
|
||||||
|
|
||||||
# }
|
# }
|
||||||
|
|
||||||
|
@ -93,7 +233,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- template: azure-pipelines/setup-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/darwin-install.yml
|
- template: azure-pipelines/darwin-install-ninja.yml
|
||||||
- template: azure-pipelines/configure.yml
|
- template: azure-pipelines/configure.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.12 Path)
|
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.12 Path)
|
||||||
|
@ -111,7 +251,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- template: azure-pipelines/setup-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/darwin-install.yml
|
- template: azure-pipelines/darwin-install-ninja.yml
|
||||||
- template: azure-pipelines/configure.yml
|
- template: azure-pipelines/configure.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.12 Path)
|
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.12 Path)
|
||||||
|
@ -129,7 +269,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- template: azure-pipelines/setup-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/darwin-install.yml
|
- template: azure-pipelines/darwin-install-ninja.yml
|
||||||
- template: azure-pipelines/configure.yml
|
- template: azure-pipelines/configure.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.13 Path)
|
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.13 Path)
|
||||||
|
@ -147,7 +287,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- template: azure-pipelines/setup-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/darwin-install.yml
|
- template: azure-pipelines/darwin-install-ninja.yml
|
||||||
- template: azure-pipelines/configure.yml
|
- template: azure-pipelines/configure.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.13 Path)
|
beforeConfigure: export SDKROOT=$(xcodebuild -version -sdk macosx10.13 Path)
|
||||||
|
|
Loading…
Reference in New Issue