diff options
| -rw-r--r-- | .github/workflows/check.yaml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index 6667cdf..ce25bca 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -17,10 +17,18 @@ jobs: - name: Checkout 🛒 uses: actions/checkout@v3 + - name: Cache LLVM ⚙ + id: cache-llvm + uses: actions/cache@v2 + with: + path: ./llvm + key: llvm-12.0.1 + - name: LLVM 🧰 uses: KyleMayes/install-llvm-action@v1 with: version: "12.0.1" + cached: ${{ steps.cache-llvm.outputs.cache-hit }} - name: Python, Ninja, & Meson 🏗 run: | |