From 6a4c6fc774826dc9e22783ebcba0b09261b13920 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Tue, 14 Jun 2022 21:00:26 -0700 Subject: ci(check): cache llvm --- .github/workflows/check.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) 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: | -- cgit v1.2.3