mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 20:27:36 +02:00
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Related to this PR https://github.com/microsoft/PowerToys/pull/41968. Now, we can enabled back the ci build with the nightly build cache (Just kick off one today, and it will run periodically daily).
53 lines
1.1 KiB
YAML
53 lines
1.1 KiB
YAML
trigger:
|
|
batch: true
|
|
branches:
|
|
include:
|
|
- main
|
|
- stable
|
|
# paths:
|
|
# exclude:
|
|
# - doc/*
|
|
# - temp/*
|
|
# - tools/*
|
|
# - '**.md'
|
|
|
|
pr:
|
|
branches:
|
|
include:
|
|
- main
|
|
- stable
|
|
# paths:
|
|
# exclude:
|
|
# - '**.md'
|
|
# - doc
|
|
|
|
name: $(BuildDefinitionName)_$(date:yyMM).$(date:dd)$(rev:rrr)
|
|
|
|
parameters:
|
|
- name: buildPlatforms
|
|
type: object
|
|
default:
|
|
- x64
|
|
- arm64
|
|
- name: enableMsBuildCaching
|
|
type: boolean
|
|
displayName: "Enable MSBuild Caching"
|
|
default: true
|
|
- name: runTests
|
|
type: boolean
|
|
displayName: "Run Tests"
|
|
default: true
|
|
- name: useVSPreview
|
|
type: boolean
|
|
displayName: "Build Using Visual Studio Preview"
|
|
default: false
|
|
|
|
extends:
|
|
template: templates/pipeline-ci-build.yml
|
|
parameters:
|
|
buildPlatforms: ${{ parameters.buildPlatforms }}
|
|
${{ if eq(variables['System.PullRequest.IsFork'], 'False') }}:
|
|
enableMsBuildCaching: ${{ parameters.enableMsBuildCaching }}
|
|
runTests: ${{ parameters.runTests }}
|
|
useVSPreview: ${{ parameters.useVSPreview }}
|