From 6e1650af1284ff0113c0153d7aeaa703ae5fa469 Mon Sep 17 00:00:00 2001 From: "trop[bot]" <37223003+trop[bot]@users.noreply.github.com> Date: Sat, 12 Jul 2025 09:52:21 +0200 Subject: [PATCH] build: cleanup symlinks in cache (#47731) * build: cleanup symlinks in cache Co-authored-by: John Kleinschmidt * build: ignore broken links Co-authored-by: John Kleinschmidt * try --ignore-failed-read Co-authored-by: John Kleinschmidt * build: dont deref symlinks Co-authored-by: John Kleinschmidt * build: add flag to 7zip to resolve symlink error Needed to ignore Dangerous symbolic link path was ignored errors Co-authored-by: John Kleinschmidt * Revert "build: cleanup symlinks in cache" This reverts commit 69e53cdc8850a62af3cb8cb1d4b6246b1e378c29. Co-authored-by: John Kleinschmidt --------- Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: John Kleinschmidt --- .github/actions/restore-cache-azcopy/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/restore-cache-azcopy/action.yml b/.github/actions/restore-cache-azcopy/action.yml index 22e82e0f9784..2272ee6e7687 100644 --- a/.github/actions/restore-cache-azcopy/action.yml +++ b/.github/actions/restore-cache-azcopy/action.yml @@ -96,7 +96,7 @@ runs: $TEMP_DIR=New-Item -ItemType Directory -Path temp-cache $TEMP_DIR_PATH = $TEMP_DIR.FullName - C:\ProgramData\Chocolatey\bin\7z.exe -y x $src_cache -o"$TEMP_DIR_PATH" + C:\ProgramData\Chocolatey\bin\7z.exe -y -snld x $src_cache -o"$TEMP_DIR_PATH" - name: Move Src Cache (Windows) if: ${{ inputs.target-platform == 'win' }}