rust: disable incremental build for release build

so that the release build is reproducible. a reproduciable helps
developers to perform postmortem debugging.

Fixes #19225
Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>

Closes scylladb/scylladb#19374
This commit is contained in:
Kefu Chai
2024-06-19 17:34:13 +08:00
committed by Botond Dénes
parent 680405b465
commit 9f0b60c7a0

View File

@@ -34,6 +34,7 @@ incremental = false
[profile.rust-release]
inherits = "release"
debug = true
incremental = false
[profile.rust-coverage]
inherits = "dev"