ci: actually kill leftover processes on WOA testing (#20286)

This commit is contained in:
John Kleinschmidt 2019-09-19 11:35:31 -04:00 committed by GitHub
parent e459114149
commit 6f2fe7560a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -78,7 +78,7 @@ steps:
displayName: 'Verify ffmpeg' displayName: 'Verify ffmpeg'
- powershell: | - powershell: |
Get-Process | Where Name Like "electron.exe*" | Stop-Process Get-Process | Where Name Like "electron*" | Stop-Process
Get-Process | Where Name Like "MicrosoftEdge.exe*" | Stop-Process Get-Process | Where Name Like "MicrosoftEdge*" | Stop-Process
displayName: 'Kill processes left running from last test run' displayName: 'Kill processes left running from last test run'
condition: always() condition: always()