Skip to content

Commit

Permalink
Update pipeline to run new powershell script
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-malburg committed Jul 28, 2023
1 parent ad6a679 commit fd52dba
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -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'
Expand Down Expand Up @@ -83,6 +83,7 @@ jobs:

###########################
- job: CreateWinPangoLibsViaVcpkg
condition: eq(true, false) # disable job for now
pool:
vmImage: 'windows-2022'
steps:
Expand Down Expand Up @@ -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

0 comments on commit fd52dba

Please sign in to comment.