From a0ef6f6ca7832403c8388ebcca3358bb5c1d83f5 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 7 Apr 2019 17:09:45 -0400 Subject: [PATCH] Okay, I guess I need to use the full pathname for templates? --- azure-pipelines.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ee37821a..f674a206 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -24,10 +24,10 @@ strategy: arch: '386' libtype: 'shared' vmImage: 'ubuntu-16.04' - python3Template: 'setup-python3.yml' - depsAndNinjaTemplate: 'linux-386-install-gtk-dev-ninja.yml' + python3Template: 'azure-pipelines/setup-python3.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' - artifactTemplate: 'artifacts.yml' + artifactTemplate: 'azure-pipelines/artifacts.yml' libfiles: 'libui.so.0' osHeader: 'ui_unix.h' @@ -38,9 +38,9 @@ workspace: clean: all steps: -- template: azure-pipelines/$(python3Template) +- template: $(python3Template) - template: azure-pipelines/install-latest-meson.yml -- template: azure-pipelines/$(depsAndNinjaTemplate) +- template: $(depsAndNinjaTemplate) - template: azure-pipelines/configure.yml parameters: beforeConfigure: $(beforeConfigure) @@ -49,7 +49,7 @@ steps: parameters: beforeBuild: $(beforeBuild) afterBuild: $(afterBuild) -- template: azure-pipelines/$(artifactTemplate) +- template: $(artifactTemplate) parameters: os: $(os) arch: $(arch)