mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-27 18:31:15 +08:00
ba1465e584
* Cherry-pick infrastructure changes from https://github.com/microsoft/vcpkg/pull/36081 as authored by @dg0yt * Suppress warnings for the monthly docker mint as suggested by Toddy Mladenov ( MS internal conversation https://teams.microsoft.com/l/message/19:f498f444e97f40b2a2027d015a9047ab@thread.tacv2/1707520630587?tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47&groupId=2080ccbe-0cfb-49e6-a9c1-ea6a6bf82722&parentMessageId=1707520630587&teamName=Containers%20Secure%20Supply%20Chain&channelName=3P%20Registry%20and%20Images%20Guidance&createdTime=1707520630587 ) * Move Azure Container Registry for Android to WestUS3; with this we are officially entirely within one Azure region again :D * Explicitly grant Azure DevOps permissions to touch the scale set rather than relying on subscription-level assignments.
127 lines
3.8 KiB
YAML
127 lines
3.8 KiB
YAML
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
variables:
|
|
android-pool: 'PrAnd-1ES-Pool'
|
|
linux-pool: 'PrLin-1ES-Pool'
|
|
windows-pool: 'PrWin-2024-02-16'
|
|
osx-pool: 'PrOsx-2024-01-18'
|
|
osx-arm64-pool: 'PrOsx-2024-01-22-arm64'
|
|
linux-docker-image: 'vcpkgandroidwus3.azurecr.io/vcpkg-android:2024-02-14'
|
|
|
|
parameters:
|
|
- name: vcpkgToolSha
|
|
displayName: 'Custom SHA of vcpkg-tool to use rather than bootstrap'
|
|
type: string
|
|
default: 'use default'
|
|
- name: tripletPattern
|
|
displayName: 'Enable triplets which contain this substring'
|
|
type: string
|
|
default: '-'
|
|
|
|
jobs:
|
|
- template: windows/azure-pipelines.yml
|
|
parameters:
|
|
triplet: x86-windows
|
|
jobName: x86_windows
|
|
poolName: $(windows-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
tripletPattern: ${{ parameters.tripletPattern }}
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
parameters:
|
|
triplet: x64-windows
|
|
jobName: x64_windows
|
|
poolName: $(windows-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
tripletPattern: ${{ parameters.tripletPattern }}
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
parameters:
|
|
triplet: x64-windows-static
|
|
jobName: x64_windows_static
|
|
poolName: $(windows-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
tripletPattern: ${{ parameters.tripletPattern }}
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
parameters:
|
|
triplet: x64-windows-static-md
|
|
jobName: x64_windows_static_md
|
|
poolName: $(windows-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
tripletPattern: ${{ parameters.tripletPattern }}
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
parameters:
|
|
triplet: x64-uwp
|
|
jobName: x64_uwp
|
|
poolName: $(windows-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
tripletPattern: ${{ parameters.tripletPattern }}
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
parameters:
|
|
triplet: arm64-windows
|
|
jobName: arm64_windows
|
|
poolName: $(windows-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
tripletPattern: ${{ parameters.tripletPattern }}
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
parameters:
|
|
triplet: arm64-uwp
|
|
jobName: arm64_uwp
|
|
poolName: $(windows-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
tripletPattern: ${{ parameters.tripletPattern }}
|
|
|
|
- template: osx/azure-pipelines.yml
|
|
parameters:
|
|
triplet: x64-osx
|
|
jobName: x64_osx
|
|
poolName: $(osx-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
tripletPattern: ${{ parameters.tripletPattern }}
|
|
|
|
- template: osx/azure-pipelines.yml
|
|
parameters:
|
|
triplet: arm64-osx
|
|
jobName: arm64_osx
|
|
poolName: $(osx-arm64-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
tripletPattern: ${{ parameters.tripletPattern }}
|
|
|
|
- template: linux/azure-pipelines.yml
|
|
parameters:
|
|
poolName: $(linux-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
tripletPattern: ${{ parameters.tripletPattern }}
|
|
|
|
- template: android/azure-pipelines.yml
|
|
parameters:
|
|
triplet: arm-neon-android
|
|
jobName: arm_neon_android
|
|
poolName: $(android-pool)
|
|
dockerImage: $(linux-docker-image)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
tripletPattern: ${{ parameters.tripletPattern }}
|
|
|
|
- template: android/azure-pipelines.yml
|
|
parameters:
|
|
triplet: x64-android
|
|
jobName: x64_android
|
|
poolName: $(android-pool)
|
|
dockerImage: $(linux-docker-image)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
tripletPattern: ${{ parameters.tripletPattern }}
|
|
|
|
- template: android/azure-pipelines.yml
|
|
parameters:
|
|
triplet: arm64-android
|
|
jobName: arm64_android
|
|
poolName: $(android-pool)
|
|
dockerImage: $(linux-docker-image)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
tripletPattern: ${{ parameters.tripletPattern }}
|