mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
CI: Cache tree-sitter grammars in all jobs
This change adds tree-sitter grammar caching to Check, Lints and Docs jobs which all previously downloaded grammars in the `helix-term` build script fresh per job. This should increase reliability and mitigate the effects of an ongoing SourceHut outage (<https://status.sr.ht/issues/2025-01-23-git.sr.ht-ddos/>). This is also a nice speed boost for these jobs: | Job name | Example time before | Example time after | |--- |--- |--- | | Check | 2m20s | 47s | | Lints | 2m56s | 1m10s | | Docs | 4m56s | 2m35s |
This commit is contained in:
parent
76a8682c4d
commit
7dea2b0ddd
1 changed files with 26 additions and 3 deletions
29
.github/workflows/build.yml
vendored
29
.github/workflows/build.yml
vendored
|
@ -10,6 +10,8 @@ on:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
MSRV: "1.76"
|
MSRV: "1.76"
|
||||||
|
# This key can be changed to bust the cache of tree-sitter grammars.
|
||||||
|
GRAMMAR_CACHE_VERSION: ""
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check:
|
check:
|
||||||
|
@ -29,6 +31,13 @@ jobs:
|
||||||
with:
|
with:
|
||||||
shared-key: "build"
|
shared-key: "build"
|
||||||
|
|
||||||
|
- name: Cache tree-sitter grammars
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: runtime/grammars
|
||||||
|
key: ${{ runner.os }}-stable-v${{ env.GRAMMAR_CACHE_VERSION }}-tree-sitter-grammars-${{ hashFiles('languages.toml') }}
|
||||||
|
restore-keys: ${{ runner.os }}-stable-v${{ env.GRAMMAR_CACHE_VERSION }}-tree-sitter-grammars-
|
||||||
|
|
||||||
- name: Run cargo check
|
- name: Run cargo check
|
||||||
run: cargo check
|
run: cargo check
|
||||||
|
|
||||||
|
@ -52,12 +61,12 @@ jobs:
|
||||||
with:
|
with:
|
||||||
shared-key: "build"
|
shared-key: "build"
|
||||||
|
|
||||||
- name: Cache test tree-sitter grammar
|
- name: Cache tree-sitter grammars
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: runtime/grammars
|
path: runtime/grammars
|
||||||
key: ${{ runner.os }}-stable-v${{ env.CACHE_VERSION }}-tree-sitter-grammars-${{ hashFiles('languages.toml') }}
|
key: ${{ runner.os }}-stable-v${{ env.GRAMMAR_CACHE_VERSION }}-tree-sitter-grammars-${{ hashFiles('languages.toml') }}
|
||||||
restore-keys: ${{ runner.os }}-stable-v${{ env.CACHE_VERSION }}-tree-sitter-grammars-
|
restore-keys: ${{ runner.os }}-stable-v${{ env.GRAMMAR_CACHE_VERSION }}-tree-sitter-grammars-
|
||||||
|
|
||||||
- name: Run cargo test
|
- name: Run cargo test
|
||||||
run: cargo test --workspace
|
run: cargo test --workspace
|
||||||
|
@ -87,6 +96,13 @@ jobs:
|
||||||
with:
|
with:
|
||||||
shared-key: "build"
|
shared-key: "build"
|
||||||
|
|
||||||
|
- name: Cache tree-sitter grammars
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: runtime/grammars
|
||||||
|
key: ${{ runner.os }}-stable-v${{ env.GRAMMAR_CACHE_VERSION }}-tree-sitter-grammars-${{ hashFiles('languages.toml') }}
|
||||||
|
restore-keys: ${{ runner.os }}-stable-v${{ env.GRAMMAR_CACHE_VERSION }}-tree-sitter-grammars-
|
||||||
|
|
||||||
- name: Run cargo fmt
|
- name: Run cargo fmt
|
||||||
run: cargo fmt --all --check
|
run: cargo fmt --all --check
|
||||||
|
|
||||||
|
@ -115,6 +131,13 @@ jobs:
|
||||||
with:
|
with:
|
||||||
shared-key: "build"
|
shared-key: "build"
|
||||||
|
|
||||||
|
- name: Cache tree-sitter grammars
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: runtime/grammars
|
||||||
|
key: ${{ runner.os }}-stable-v${{ env.GRAMMAR_CACHE_VERSION }}-tree-sitter-grammars-${{ hashFiles('languages.toml') }}
|
||||||
|
restore-keys: ${{ runner.os }}-stable-v${{ env.GRAMMAR_CACHE_VERSION }}-tree-sitter-grammars-
|
||||||
|
|
||||||
- name: Validate queries
|
- name: Validate queries
|
||||||
run: cargo xtask query-check
|
run: cargo xtask query-check
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue