diff options
| author | Fuwn <[email protected]> | 2022-06-14 21:00:26 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-06-14 21:00:26 -0700 |
| commit | 6a4c6fc774826dc9e22783ebcba0b09261b13920 (patch) | |
| tree | 83bb107f3778268c02d6d64c370af46c909c7462 | |
| parent | ci(check): add check workflow (diff) | |
| download | tatl-6a4c6fc774826dc9e22783ebcba0b09261b13920.tar.xz tatl-6a4c6fc774826dc9e22783ebcba0b09261b13920.zip | |
ci(check): cache llvm
| -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: | |