mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 20:27:36 +02:00
* Update with bug fixes for tray icon and support for parent process * Process information enum * Update the docs * Fix spelling * Make sure that PID is used in PT config flow * Logic for checks based on #34148 * Update with link to PR * Small cleanup * Proper task segmentation in a function * Cleanup the code * Fix synchronization context issue * Update planning doc * Test disabling caching to see if that manages to pass CI
47 lines
846 B
YAML
47 lines
846 B
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: false
|
|
- name: runTests
|
|
type: boolean
|
|
displayName: "Run Tests"
|
|
default: true
|
|
|
|
extends:
|
|
template: templates/pipeline-ci-build.yml
|
|
parameters:
|
|
buildPlatforms: ${{ parameters.buildPlatforms }}
|
|
enableMsBuildCaching: ${{ parameters.enableMsBuildCaching }}
|
|
runTests: ${{ parameters.runTests }}
|