2020-04-22 08:12:21 +08:00
|
|
|
# Copyright (c) Microsoft Corporation.
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
#
|
|
|
|
|
|
|
|
variables:
|
|
|
|
clean-tombstones: 'false'
|
|
|
|
stages:
|
|
|
|
- stage: Clean_Tombstones
|
|
|
|
displayName: 'Clean Tombstones'
|
|
|
|
jobs:
|
|
|
|
- job:
|
|
|
|
displayName: 'Clean Tombstones'
|
2020-04-22 17:47:03 +08:00
|
|
|
pool:
|
|
|
|
name: PrWin-2020-04-22
|
2020-04-22 08:12:21 +08:00
|
|
|
condition: eq(variables['clean-tombstones'], 'true')
|
|
|
|
timeoutInMinutes: 10
|
|
|
|
steps:
|
|
|
|
- task: PowerShell@2
|
|
|
|
displayName: 'Initialize Environment'
|
|
|
|
inputs:
|
|
|
|
filePath: 'scripts/azure-pipelines/windows/initialize-environment.ps1'
|
|
|
|
- powershell: |
|
|
|
|
Remove-Item archives\fail -Force -Recurse
|
|
|
|
displayName: 'Delete archives\fail'
|
|
|
|
|
|
|
|
- stage: Build
|
|
|
|
jobs:
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
|
|
parameters:
|
|
|
|
triplet: x86-windows
|
|
|
|
jobName: x86_windows
|
|
|
|
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
|
|
parameters:
|
|
|
|
triplet: x64-windows
|
|
|
|
jobName: x64_windows
|
|
|
|
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
|
|
parameters:
|
|
|
|
triplet: x64-windows-static
|
|
|
|
jobName: x64_windows_static
|
|
|
|
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
|
|
parameters:
|
|
|
|
triplet: x64-uwp
|
|
|
|
jobName: x64_uwp
|
|
|
|
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
|
|
parameters:
|
|
|
|
triplet: arm64-windows
|
|
|
|
jobName: arm64_windows
|
|
|
|
|
|
|
|
- template: windows/azure-pipelines.yml
|
|
|
|
parameters:
|
|
|
|
triplet: arm-uwp
|
|
|
|
jobName: arm_uwp
|