We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 329c8c2 commit bdaf644Copy full SHA for bdaf644
.pipelines/v2/templates/job-build-project.yml
@@ -504,6 +504,14 @@ jobs:
504
Remove-Item -Force -Recurse "$(JobOutputDirectory)/_appx" -ErrorAction:Ignore
505
displayName: Re-pack the new CmdPal package after signing
506
507
+ - pwsh: |
508
+ $testsPath = "$(Build.SourcesDirectory)/$(BuildPlatform)/$(BuildConfiguration)/tests"
509
+ if (Test-Path $testsPath) {
510
+ Remove-Item -Path $testsPath -Recurse -Force
511
+ Write-Host "Removed tests folder to reduce signing workload: $testsPath"
512
+ }
513
+ displayName: Remove tests folder before signing
514
+
515
- template: steps-esrp-signing.yml
516
parameters:
517
displayName: Sign Core PowerToys
0 commit comments