remote: Do not compress remote by default when building from source (#40994)

Release Notes:

- N/A
This commit is contained in:
Jakub Konka
2025-10-23 21:26:34 +02:00
committed by GitHub
parent 66ec0fc0e1
commit c0ff8ef8e9
+4 -1
View File
@@ -125,7 +125,10 @@ async fn build_remote_server_from_source(
use std::env::VarError;
use std::path::Path;
let build_remote_server = std::env::var("ZED_BUILD_REMOTE_SERVER").unwrap_or_default();
// By default, we make building remote server from source opt-out and we do not force artifact compression
// for quicker builds.
let build_remote_server =
std::env::var("ZED_BUILD_REMOTE_SERVER").unwrap_or("nocompress".into());
if build_remote_server == "false"
|| build_remote_server == "no"