mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-11-24 04:12:32 +08:00
07ec7980d1
This should prevent the tests from running (and failing) when PreCheck skips the build.
63 lines
1.8 KiB
YAML
63 lines
1.8 KiB
YAML
variables:
|
|
- name: runCodesignValidationInjectionBG
|
|
value: false
|
|
- name: EnablePipelineCache
|
|
value: true
|
|
- ${{ if eq(parameters.enableMsBuildCaching, true) }}:
|
|
- name: EnablePipelineCache
|
|
value: true
|
|
|
|
parameters:
|
|
- name: buildPlatforms
|
|
type: object
|
|
default:
|
|
- x64
|
|
- arm64
|
|
- name: enableMsBuildCaching
|
|
type: boolean
|
|
default: false
|
|
- name: runTests
|
|
type: boolean
|
|
default: true
|
|
|
|
stages:
|
|
# Allow manual builds to skip pre-check
|
|
- ${{ if ne(variables['Build.Reason'], 'Manual') }}:
|
|
- stage: Precheck
|
|
jobs:
|
|
- template: job-ci-precheck.yml
|
|
|
|
- ${{ each platform in parameters.buildPlatforms }}:
|
|
- stage: Build_${{ platform }}
|
|
displayName: Build ${{ platform }}
|
|
${{ if ne(variables['Build.Reason'], 'Manual') }}:
|
|
dependsOn: [Precheck]
|
|
condition: and(succeeded(), ne(dependencies.Precheck.outputs['Precheck.verifyBuildRequest.skipBuild'], 'Yes'))
|
|
${{ else }}:
|
|
dependsOn: []
|
|
jobs:
|
|
- template: job-build-project.yml
|
|
parameters:
|
|
pool:
|
|
${{ if eq(variables['System.CollectionId'], 'cb55739e-4afe-46a3-970f-1b49d8ee7564') }}:
|
|
name: SHINE-INT-L
|
|
${{ else }}:
|
|
name: SHINE-OSS-L
|
|
buildPlatforms:
|
|
- ${{ platform }}
|
|
buildConfigurations: [Release]
|
|
enablePackageCaching: true
|
|
enableMsBuildCaching: ${{ parameters.enableMsBuildCaching }}
|
|
runTests: ${{ parameters.runTests }}
|
|
|
|
- ${{ if eq(parameters.runTests, true) }}:
|
|
- stage: Test_${{ platform }}
|
|
displayName: Test ${{ platform }}
|
|
dependsOn:
|
|
- Build_${{platform}}
|
|
jobs:
|
|
- template: job-test-project.yml
|
|
parameters:
|
|
platform: ${{ platform }}
|
|
configuration: Release
|