mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-28 21:32:39 +00:00
Disable sccache during dev extension builds (#20270)
This commit is contained in:
parent
e47b305ca7
commit
b23835b5a5
1 changed files with 2 additions and 0 deletions
|
@ -135,6 +135,8 @@ impl ExtensionBuilder {
|
|||
.args(options.release.then_some("--release"))
|
||||
.arg("--target-dir")
|
||||
.arg(extension_dir.join("target"))
|
||||
// WASI builds do not work with sccache and just stuck, so disable it.
|
||||
.env("RUSTC_WRAPPER", "")
|
||||
.current_dir(extension_dir)
|
||||
.output()
|
||||
.context("failed to run `cargo`")?;
|
||||
|
|
Loading…
Reference in a new issue