Skip to content

Commit

Permalink
commit ci: cache llvm choco installation
Browse files Browse the repository at this point in the history
  • Loading branch information
fxliang committed Apr 20, 2024
1 parent 7016a34 commit 1f4be3c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/commit-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,15 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
- name: Cache llvm
id: cache-llvm
uses: actions/cache@v4
with:
path: C:\\Program Files\\LLVM
key: ${{ runner.os }}-llvm-17.0.6

- name: Install llvm
if: steps.cache-llvm.outputs.cache-hit != 'true'
run: choco install llvm --version=17.0.6

- name: Code style lint
Expand Down

0 comments on commit 1f4be3c

Please sign in to comment.