Okay, I guess I need to use the full pathname for templates?
This commit is contained in:
parent
c0c9a3ae92
commit
a0ef6f6ca7
|
@ -24,10 +24,10 @@ strategy:
|
||||||
arch: '386'
|
arch: '386'
|
||||||
libtype: 'shared'
|
libtype: 'shared'
|
||||||
vmImage: 'ubuntu-16.04'
|
vmImage: 'ubuntu-16.04'
|
||||||
python3Template: 'setup-python3.yml'
|
python3Template: 'azure-pipelines/setup-python3.yml'
|
||||||
depsAndNinjaTemplate: 'linux-386-install-gtk-dev-ninja.yml'
|
depsAndNinjaTemplate: 'azure-pipelines/linux-386-install-gtk-dev-ninja.yml'
|
||||||
beforeConfigure: 'export CFLAGS=-m32 CXXFLAGS=-m32 PKG_CONFIG_PATH=/usr/lib/i386-linux-gnu/pkgconfig'
|
beforeConfigure: 'export CFLAGS=-m32 CXXFLAGS=-m32 PKG_CONFIG_PATH=/usr/lib/i386-linux-gnu/pkgconfig'
|
||||||
artifactTemplate: 'artifacts.yml'
|
artifactTemplate: 'azure-pipelines/artifacts.yml'
|
||||||
libfiles: 'libui.so.0'
|
libfiles: 'libui.so.0'
|
||||||
osHeader: 'ui_unix.h'
|
osHeader: 'ui_unix.h'
|
||||||
|
|
||||||
|
@ -38,9 +38,9 @@ workspace:
|
||||||
clean: all
|
clean: all
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- template: azure-pipelines/$(python3Template)
|
- template: $(python3Template)
|
||||||
- template: azure-pipelines/install-latest-meson.yml
|
- template: azure-pipelines/install-latest-meson.yml
|
||||||
- template: azure-pipelines/$(depsAndNinjaTemplate)
|
- template: $(depsAndNinjaTemplate)
|
||||||
- template: azure-pipelines/configure.yml
|
- template: azure-pipelines/configure.yml
|
||||||
parameters:
|
parameters:
|
||||||
beforeConfigure: $(beforeConfigure)
|
beforeConfigure: $(beforeConfigure)
|
||||||
|
@ -49,7 +49,7 @@ steps:
|
||||||
parameters:
|
parameters:
|
||||||
beforeBuild: $(beforeBuild)
|
beforeBuild: $(beforeBuild)
|
||||||
afterBuild: $(afterBuild)
|
afterBuild: $(afterBuild)
|
||||||
- template: azure-pipelines/$(artifactTemplate)
|
- template: $(artifactTemplate)
|
||||||
parameters:
|
parameters:
|
||||||
os: $(os)
|
os: $(os)
|
||||||
arch: $(arch)
|
arch: $(arch)
|
||||||
|
|
Loading…
Reference in New Issue