Skip to content

Commit

Permalink
Pipelines cleanup, use custom triplets from vcpkg fork
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-malburg authored and dchengTSC committed Aug 1, 2023
1 parent 347c540 commit 6f98d12
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 26 deletions.
18 changes: 12 additions & 6 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@ jobs:
cd vcpkg
./bootstrap-vcpkg.sh
displayName: Setup vcpkg
- bash: |
./vcpkg install pango:x64-osx-dynamic-release --overlay-triplets=$(Build.SourcesDirectory)/triplets
./vcpkg install pango:arm64-osx-dynamic-release --overlay-triplets=$(Build.SourcesDirectory)/triplets
./vcpkg install pango:x64-osx-dynamic-release
workingDirectory: vcpkg
displayName: Run vcpkg install
displayName: Run vcpkg install (x64-osx-dynamic-release)
- bash: |
./vcpkg install pango:arm64-osx-dynamic-release
workingDirectory: vcpkg
displayName: Run vcpkg install (arm64-osx-dynamic-release)
- bash: |
./vcpkg list > ../versions.txt
Expand Down Expand Up @@ -63,6 +67,7 @@ jobs:

###########################
- job: CreateWinPangoLibsViaVcpkg
#condition: eq(true, false) # disable job for now
pool:
vmImage: 'windows-2022'
steps:
Expand All @@ -73,8 +78,8 @@ jobs:
displayName: Setup vcpkg
- bash: |
./vcpkg.exe install pango:x64-windows-release --overlay-triplets=$(Build.SourcesDirectory)/triplets
workingDirectory: vcpkg
./vcpkg/vcpkg.exe install pango:x64-windows-release
workingDirectory: $(Build.SourcesDirectory)
displayName: Run vcpkg install
- bash: |
Expand Down Expand Up @@ -114,3 +119,4 @@ jobs:
inputs:
pathToPublish: $(Build.ArtifactStagingDirectory)/WinPango.tar.gz
artifactName: WinPango

8 changes: 0 additions & 8 deletions triplets/arm64-osx-dynamic-release.cmake

This file was deleted.

8 changes: 0 additions & 8 deletions triplets/x64-osx-dynamic-release.cmake

This file was deleted.

4 changes: 0 additions & 4 deletions triplets/x64-windows-dynamic-release.cmake

This file was deleted.

0 comments on commit 6f98d12

Please sign in to comment.