[ubuntu] reverted dotnet sdk extraction in parallel (#2373)

Co-authored-by: Leonid Lapshin <originalnoe-nazvanie@yandex.ru>
This commit is contained in:
Leonid Lapshin
2020-12-30 14:26:37 +03:00
committed by GitHub
parent 1ce075fe93
commit f3394fb979

View File

@@ -73,9 +73,7 @@ parallel --jobs 0 --halt soon,fail=1 \
'url="https://dotnetcli.blob.core.windows.net/dotnet/Sdk/{}/dotnet-sdk-{}-linux-x64.tar.gz"; \
download_with_retries $url' ::: "${sortedSdks[@]}"
parallel --jobs 0 --halt soon,fail=1 \
'name="./dotnet-sdk-{}-linux-x64.tar.gz"; \
extract_dotnet_sdk $name' ::: "${sortedSdks[@]}"
find . -name "*.tar.gz" | parallel --halt soon,fail=1 'extract_dotnet_sdk {}'
# Smoke test each SDK
for sdk in $sortedSdks; do