From 1a9f99b3ed4f8fcde707bafe1bb0f5f1621891ec Mon Sep 17 00:00:00 2001 From: John Kleinschmidt Date: Tue, 9 Jul 2024 16:20:18 -0400 Subject: [PATCH] chore: speed up azcopy on src cache (#42742) --- .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 643585272a..0d23a5f8c6 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