From 27cd21848360815c5db49647b5d8efc6e55f2b99 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Sun, 28 Jan 2024 15:10:57 +0100 Subject: [PATCH 1/2] No debug symbols in Rust --- rust/prql/Cargo.toml | 2 +- rust/skim/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/prql/Cargo.toml b/rust/prql/Cargo.toml index f29aa4aaef9..ca8a19b41ac 100644 --- a/rust/prql/Cargo.toml +++ b/rust/prql/Cargo.toml @@ -13,7 +13,7 @@ serde_json = "1.0" crate-type = ["staticlib"] [profile.release] -debug = true +debug = false [profile.release-thinlto] inherits = "release" diff --git a/rust/skim/Cargo.toml b/rust/skim/Cargo.toml index 22af40c3e33..0839b888d8b 100644 --- a/rust/skim/Cargo.toml +++ b/rust/skim/Cargo.toml @@ -17,7 +17,7 @@ cxx-build = "1.0.83" crate-type = ["staticlib"] [profile.release] -debug = true +debug = false [profile.release-thinlto] inherits = "release" From d36c92a21900c7f47680ee67cb93864d02105bdf Mon Sep 17 00:00:00 2001 From: Max Kainov Date: Sun, 28 Jan 2024 15:09:39 +0000 Subject: [PATCH 2/2] CI: Add rust dir to build digest --- tests/ci/ci_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ci/ci_config.py b/tests/ci/ci_config.py index ece7f2f7bae..df72c02cb7d 100644 --- a/tests/ci/ci_config.py +++ b/tests/ci/ci_config.py @@ -213,6 +213,7 @@ class BuildConfig: "./programs", "./packages", "./docker/packager/packager", + "./rust", ], exclude_files=[".md"], docker=["clickhouse/binary-builder"],