From d02f9400390e14a3043e6f17d8d1102e913320c6 Mon Sep 17 00:00:00 2001 From: "trop[bot]" <37223003+trop[bot]@users.noreply.github.com> Date: Mon, 15 Jul 2024 10:56:07 -0400 Subject: [PATCH] chore: speed up azcopy on src cache (#42849) Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: John Kleinschmidt --- .github/actions/restore-cache-azcopy/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/restore-cache-azcopy/action.yml b/.github/actions/restore-cache-azcopy/action.yml index 643585272a1a..0d23a5f8c6da 100644 --- a/.github/actions/restore-cache-azcopy/action.yml +++ b/.github/actions/restore-cache-azcopy/action.yml @@ -23,7 +23,7 @@ runs: # or it was uploaded in the checkout job for a previous commit. uses: nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e # v3.0.0 with: - timeout_minutes: 20 + timeout_minutes: 30 max_attempts: 3 retry_on: error command: | @@ -32,7 +32,7 @@ runs: echo "SAS Token not found; exiting src cache download early..." exit 1 fi - azcopy copy \ + azcopy copy --log-level=ERROR \ "https://${{ env.AZURE_AKS_CACHE_STORAGE_ACCOUNT }}.file.core.windows.net/${{ env.AZURE_AKS_CACHE_SHARE_NAME }}/${{ env.CACHE_PATH }}?$sas_token" $DEPSHASH.tar - name: Clean SAS Key shell: bash