Moved the linux 386 steps to azure-pipelines_linux. Next up is trying the MinGW-w64 setup again, but using the MinGW-w64 in Linux instead of Windows.
This commit is contained in:
parent
30a363baf1
commit
87bdb4e736
|
@ -4,29 +4,6 @@ variables:
|
||||||
releaseExamples: 'controlgallery cpp-multithread datetime drawtext histogram tester timer'
|
releaseExamples: 'controlgallery cpp-multithread datetime drawtext histogram tester timer'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
- job: linux_386_shared
|
|
||||||
displayName: 'Linux 386 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-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: 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
|
- job: linux_386_static
|
||||||
displayName: 'Linux 386 Static'
|
displayName: 'Linux 386 Static'
|
||||||
pool:
|
pool:
|
||||||
|
|
|
@ -4,6 +4,55 @@ variables:
|
||||||
releaseExamples: 'controlgallery cpp-multithread datetime drawtext histogram tester timer'
|
releaseExamples: 'controlgallery cpp-multithread datetime drawtext histogram tester timer'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
|
# linux {
|
||||||
|
|
||||||
|
- job: linux_386_shared
|
||||||
|
displayName: 'Linux 386 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-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: 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
|
- job: linux_amd64_shared
|
||||||
displayName: 'Linux amd64 Shared'
|
displayName: 'Linux amd64 Shared'
|
||||||
pool:
|
pool:
|
||||||
|
@ -48,11 +97,12 @@ jobs:
|
||||||
libfiles: libui.a
|
libfiles: libui.a
|
||||||
osHeader: ui_unix.h
|
osHeader: ui_unix.h
|
||||||
|
|
||||||
|
# }
|
||||||
|
|
||||||
# mac {
|
# mac {
|
||||||
|
|
||||||
# TODO beforeConfigure/beforeBuild: export SDKROOT=$(xcodebuild -version -sdk macosx10.13 Path)?
|
# TODO beforeConfigure/beforeBuild: export SDKROOT=$(xcodebuild -version -sdk macosx10.13 Path)?
|
||||||
|
|
||||||
|
|
||||||
- job: darwin_amd64_shared
|
- job: darwin_amd64_shared
|
||||||
displayName: 'Darwin amd64 Shared'
|
displayName: 'Darwin amd64 Shared'
|
||||||
pool:
|
pool:
|
||||||
|
|
Loading…
Reference in New Issue