change file

This commit is contained in:
Leilei Zhang
2025-02-13 14:57:18 +08:00
parent 494b39669a
commit 229bd70910
2 changed files with 16 additions and 13 deletions

View File

@@ -217,12 +217,6 @@ jobs:
- ${{ parameters.beforeBuildSteps }}
- bash: |
az pipelines build list --organization '$(System.TeamFoundationCollectionUri)' --project '$(System.TeamProject)'
displayName: 'Show build list'
env:
AZURE_DEVOPS_EXT_PAT: $(System.AccessToken)
- task: VSBuild@1
${{ if eq(parameters.runTests, true) }}:
displayName: Build and Test PowerToys main project

View File

@@ -61,13 +61,22 @@ jobs:
reg add "HKLM\Software\Policies\Microsoft\Edge\WebView2\ReleaseChannels" /v PowerToys.exe /t REG_SZ /d "3"
displayName: "Enable WebView2 Canary Channel"
- download: current
displayName: Download artifacts
artifact: $(TestArtifactsName)
patterns: |-
**
!**\*.pdb
!**\*.lib
# - download: current
# displayName: Download artifacts
# artifact: $(TestArtifactsName)
# patterns: |-
# **
# !**\*.pdb
# !**\*.lib
- bash: |
az pipelines runs artifact download
--artifact-name $(TestArtifactsName)
--path "$(Pipeline.Workspace)"
--run-id $(Build.BuildId)
displayName: 'Download Pipeline Artifact'
env:
AZURE_DEVOPS_EXT_PAT: $(System.AccessToken)
- template: steps-ensure-dotnet-version.yml
parameters: