mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-28 16:07:02 +01: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 This pull request introduces a new nightly pre-warm pipeline and adds configurability for MSBuild cache read-only behavior across the CI pipeline templates. The main goals are to enable scheduled nightly builds that pre-warm caches and to provide more granular control over MSBuild cache policies through pipeline parameters. Pipeline enhancements: * Added a new `.pipelines/v2/nightly-prewarm.yml` pipeline that schedules a nightly pre-warm build for the `main` branch, reusing the existing CI template and supporting both `x64` and `arm64` platforms. * Introduced a `msBuildCacheIsReadOnly` parameter (defaulting to `true`) in both `pipeline-ci-build.yml` and `job-build-project.yml` templates, allowing control over whether the MSBuild remote cache is used in read-only mode. [[1]](diffhunk://#diff-95896d25119462fea5ce61f0f72a43862ff3020d2e1cce8bd1f2d5d943dafae8R16-R18) [[2]](diffhunk://#diff-2a1b06b9419d9ac8a4fc446800d32a657d60c45979e82462df2d6d71a75ba68cR53-R55)
38 lines
934 B
YAML
38 lines
934 B
YAML
# .pipelines/v2/nightly-prewarm.yml
|
|
# Nightly pre-warm that reuses your existing ci.yml as-is
|
|
|
|
trigger: none
|
|
pr: none
|
|
|
|
# (18:00 UTC) — adjust as you like
|
|
schedules:
|
|
- cron: "0 18 * * *" # UTC
|
|
displayName: Nightly pre-warm (main)
|
|
branches:
|
|
include:
|
|
- main
|
|
always: true
|
|
|
|
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: msBuildCacheIsReadOnly
|
|
type: boolean
|
|
displayName: "MSBuild Cache Read Only"
|
|
default: false
|
|
|
|
extends:
|
|
template: templates/pipeline-ci-build.yml
|
|
parameters:
|
|
buildPlatforms: ${{ parameters.buildPlatforms }}
|
|
enableMsBuildCaching: ${{ parameters.enableMsBuildCaching }}
|
|
msBuildCacheIsReadOnly: ${{ parameters.msBuildCacheIsReadOnly }} |