From e69a48867b1e0b18857a372ff8ce2961c517287a Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Sun, 7 Jun 2026 16:20:40 +0200 Subject: [PATCH] [CI] Attempt to fix sporadic ccache key restore failure on Windows Failure examples: - https://github.com/learning-process/parallel_programming_course/actions/runs/27092193157/job/79958099680?pr=804 - https://github.com/learning-process/parallel_programming_course/actions/runs/27094992419/job/79965554625?pr=806 --- .github/actions/setup-windows-toolchain/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/setup-windows-toolchain/action.yml b/.github/actions/setup-windows-toolchain/action.yml index e0b936aa1..0dfcfbe80 100644 --- a/.github/actions/setup-windows-toolchain/action.yml +++ b/.github/actions/setup-windows-toolchain/action.yml @@ -11,6 +11,9 @@ runs: uses: mpi4py/setup-mpi@v1 with: mpi: msmpi + - name: Create ccache directory + shell: pwsh + run: New-Item -ItemType Directory -Force -Path "$env:LOCALAPPDATA\ccache" | Out-Null - name: Setup ccache uses: Chocobo1/setup-ccache-action@v1 with: