74 lines
1.9 KiB
YAML
Executable File
74 lines
1.9 KiB
YAML
Executable File
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
variables:
|
|
windows-pool: 'PrWin-2022-05-19'
|
|
linux-pool: 'PrLin-2022-05-19'
|
|
osx-pool: 'PrOsx-2022-02-04'
|
|
|
|
parameters:
|
|
- name: vcpkgToolSha
|
|
displayName: 'Custom SHA of vcpkg-tool to use rather than bootstrap'
|
|
type: string
|
|
default: 'use default'
|
|
|
|
jobs:
|
|
- template: windows/azure-pipelines.yml
|
|
parameters:
|
|
triplet: x86-windows
|
|
jobName: x86_windows
|
|
poolName: $(windows-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
parameters:
|
|
triplet: x64-windows
|
|
jobName: x64_windows
|
|
poolName: $(windows-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
parameters:
|
|
triplet: x64-windows-static
|
|
jobName: x64_windows_static
|
|
poolName: $(windows-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
parameters:
|
|
triplet: x64-windows-static-md
|
|
jobName: x64_windows_static_md
|
|
poolName: $(windows-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
parameters:
|
|
triplet: x64-uwp
|
|
jobName: x64_uwp
|
|
poolName: $(windows-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
parameters:
|
|
triplet: arm64-windows
|
|
jobName: arm64_windows
|
|
poolName: $(windows-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
parameters:
|
|
triplet: arm-uwp
|
|
jobName: arm_uwp
|
|
poolName: $(windows-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
|
|
- template: osx/azure-pipelines.yml
|
|
parameters:
|
|
poolName: $(osx-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|
|
|
|
- template: linux/azure-pipelines.yml
|
|
parameters:
|
|
poolName: $(linux-pool)
|
|
vcpkgToolSha: ${{ parameters.vcpkgToolSha }}
|