mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
Use a minimal binary to fetch grammar sources in release CI (#2557)
This is an optimization for the release CI. The release CI can take a while since it compiles release builds for all operating systems. We cut down on duplicate work and overall time by fetching tree-sitter grammar repositories and then using those repositories in all later steps. Previously we built all of helix just to run helix_loader::grammar::fetch_grammars() which is wasteful on time. With this change we only build the helix-loader crate.
This commit is contained in:
parent
f1ae496860
commit
0035c29fc1
3 changed files with 14 additions and 4 deletions
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
@ -23,11 +23,9 @@ jobs:
|
||||||
|
|
||||||
- name: Fetch tree-sitter grammars
|
- name: Fetch tree-sitter grammars
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
env:
|
|
||||||
HELIX_DISABLE_AUTO_GRAMMAR_BUILD: yes
|
|
||||||
with:
|
with:
|
||||||
command: run
|
command: run
|
||||||
args: -- --grammar fetch
|
args: --package=helix-loader --bin=hx-loader
|
||||||
|
|
||||||
- name: Bundle grammars
|
- name: Bundle grammars
|
||||||
run: tar cJf grammars.tar.xz -C runtime/grammars/sources .
|
run: tar cJf grammars.tar.xz -C runtime/grammars/sources .
|
||||||
|
|
|
@ -9,6 +9,10 @@ categories = ["editor"]
|
||||||
repository = "https://github.com/helix-editor/helix"
|
repository = "https://github.com/helix-editor/helix"
|
||||||
homepage = "https://helix-editor.com"
|
homepage = "https://helix-editor.com"
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "hx-loader"
|
||||||
|
path = "src/main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
|
@ -27,4 +31,3 @@ threadpool = { version = "1.0" }
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||||
libloading = "0.7"
|
libloading = "0.7"
|
||||||
|
|
||||||
|
|
9
helix-loader/src/main.rs
Normal file
9
helix-loader/src/main.rs
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
use anyhow::Result;
|
||||||
|
use helix_loader::grammar::fetch_grammars;
|
||||||
|
|
||||||
|
// This binary is used in the Release CI as an optimization to cut down on
|
||||||
|
// compilation time. This is not meant to be run manually.
|
||||||
|
|
||||||
|
fn main() -> Result<()> {
|
||||||
|
fetch_grammars()
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue