Skip to content

Commit

Permalink
workflows removed caching for action
Browse files Browse the repository at this point in the history
For KyleMayes/install-llvm-action.

Reason:

Caching is not currently recommended, it is usually slower than just
directly downloading the LLVM and Clang binaries.
  • Loading branch information
silverqx committed Jul 5, 2024
1 parent d8546d4 commit e3c4e15
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/clang-cl-qt6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e3c4e15

Please sign in to comment.