mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-28 22:56:32 +00:00
Fix error in post-merge pipeline (#15717)
### Description Get the right drive letter on Windows ### Motivation and Context Build Directory might be in drive C
This commit is contained in:
parent
a952419674
commit
8cda1ffa28
1 changed files with 2 additions and 2 deletions
|
|
@ -232,7 +232,7 @@ jobs:
|
|||
CCACHE_DIR: $(ORT_CACHE_DIR)
|
||||
|
||||
- powershell: |
|
||||
Get-Volume D
|
||||
Get-Volume $("$(Build.BinariesDirectory)")[0]
|
||||
displayName: check disk size
|
||||
|
||||
- task: DeleteFiles@1
|
||||
|
|
@ -243,7 +243,7 @@ jobs:
|
|||
**/*.obj
|
||||
|
||||
- powershell: |
|
||||
Get-Volume D
|
||||
Get-Volume $("$(Build.BinariesDirectory)")[0]
|
||||
displayName: check disk size
|
||||
|
||||
- ${{ if eq(parameters.EnablePython, true) }}:
|
||||
|
|
|
|||
Loading…
Reference in a new issue