From e3c4e151ee050b7f0f9745590964956581a81625 Mon Sep 17 00:00:00 2001 From: silverqx Date: Fri, 5 Jul 2024 20:43:14 +0200 Subject: [PATCH] workflows removed caching for action For KyleMayes/install-llvm-action. Reason: Caching is not currently recommended, it is usually slower than just directly downloading the LLVM and Clang binaries. --- .github/workflows/clang-cl-qt6.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/clang-cl-qt6.yml b/.github/workflows/clang-cl-qt6.yml index c0218c4c4..2710d47ae 100644 --- a/.github/workflows/clang-cl-qt6.yml +++ b/.github/workflows/clang-cl-qt6.yml @@ -618,20 +618,13 @@ jobs: -MySQLServerPath $env:TinyMySQLInstallationPath -BuildPath $env:RUNNER_WORKSPACE - - name: Cache LLVM and Clang - id: llvm-cache - uses: actions/cache@v4 - with: - path: | - C:/Program Files/LLVM - key: llvm-${{ env.TINY_LLVM_VERSION }} - + # Caching is not currently recommended, it is usually slower than just directly downloading + # the LLVM and Clang binaries. - name: Install LLVM and Clang ${{ env.TINY_LLVM_VERSION }} uses: KyleMayes/install-llvm-action@v1 with: version: ${{ env.TINY_LLVM_VERSION }} force-version: true - cached: ${{ steps.llvm-cache.outputs.cache-hit }} - name: Ccache initialize id: ccache-initialize-cache