From fd52dba9a0125726479274f701ef088cd4c758c4 Mon Sep 17 00:00:00 2001 From: Mike Malburg Date: Fri, 28 Jul 2023 09:42:45 -0400 Subject: [PATCH] Update pipeline to run new powershell script --- azure-pipelines.yml | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 535bd41..cdd8b32 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,7 +1,7 @@ trigger: none jobs: - job: CreateMacPangoLibsViaVcpkg - #condition: eq(true, false) # disable job for now + condition: eq(true, false) # disable job for now pool: vmImage: 'macOS-12' @@ -83,6 +83,7 @@ jobs: ########################### - job: CreateWinPangoLibsViaVcpkg + condition: eq(true, false) # disable job for now pool: vmImage: 'windows-2022' steps: @@ -142,3 +143,26 @@ jobs: inputs: pathToPublish: $(Build.ArtifactStagingDirectory)/WinPango.tar.gz artifactName: WinPango + +########################### +- job: DebugCreateWinCairo + pool: + vmImage: 'windows-2022' + steps: + - task: PowerShell@2 + displayName: 'Run cairo install script' + inputs: + targetType: 'filePath' + filePath: 'build-cairo.ps1' + arguments: -ShowDebug + +- job: DebugCreateMacCairo + pool: + vmImage: 'macOS-12' + steps: + - task: PowerShell@2 + displayName: 'Run cairo install script' + inputs: + targetType: 'filePath' + filePath: 'build-cairo.ps1' + arguments: -ShowDebug