Delete compilation.tar.gz after it's been extracted (#24539) (#24558)

* try deleting compilation downput after it's been extracted

* consolidate into same step as extraction

* Update build/azure-pipelines/linux/sql-product-build-linux.yml



---------

Co-authored-by: Charles Gagnon <chgagnon@microsoft.com>
This commit is contained in:
Kim Santiago
2023-10-02 10:24:41 -07:00
committed by GitHub
parent 6703effb1b
commit ba29842b81

View File

@@ -25,6 +25,8 @@ steps:
- script: |
set -e
tar -xzf $(Pipeline.Workspace)/compilation.tar.gz
# delete tar.gz after it's been extracted to clear up the space
rm $(Pipeline.Workspace)/compilation.tar.gz
displayName: Extract compilation output
- script: |