Merge pull request #59306 from ClickHouse/no-debug-rust

No debug symbols in Rust
This commit is contained in:
Alexey Milovidov 2024-01-28 18:20:11 +01:00 committed by GitHub
commit 31032104eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View File

@ -13,7 +13,7 @@ serde_json = "1.0"
crate-type = ["staticlib"]
[profile.release]
debug = true
debug = false
[profile.release-thinlto]
inherits = "release"

View File

@ -17,7 +17,7 @@ cxx-build = "1.0.83"
crate-type = ["staticlib"]
[profile.release]
debug = true
debug = false
[profile.release-thinlto]
inherits = "release"

View File

@ -213,6 +213,7 @@ class BuildConfig:
"./programs",
"./packages",
"./docker/packager/packager",
"./rust",
],
exclude_files=[".md"],
docker=["clickhouse/binary-builder"],