build(rust): enable fat lto and one codegen unit in release (#2185)

This commit is contained in:
Hampus
2026-08-30 23:16:49 +02:00
committed by GitHub
parent 6fd3177844
commit 6d305bacdf
4 changed files with 42 additions and 0 deletions
+27
View File
@@ -452,6 +452,33 @@ mod tests {
);
}
#[test]
fn dockerfile_workspace_manifest_keeps_the_release_profile() {
let dockerfile = include_str!("../../../fluxer_app_proxy/Dockerfile");
let manifest = dockerfile
.split("'[workspace]'")
.nth(1)
.expect("synthesized workspace manifest")
.split("> Cargo.toml")
.next()
.expect("synthesized workspace manifest body");
for entry in [
"'[profile.release]'",
"'lto = \"fat\"'",
"'codegen-units = 1'",
"'strip = \"symbols\"'",
] {
assert!(
manifest.contains(entry),
"the rust-builder workspace manifest replaces the repository root one, so it must carry {entry}"
);
}
assert!(
!manifest.contains("panic"),
"fluxer_svc runs every request on its own tokio task, so a panicking handler must unwind instead of aborting the pod"
);
}
#[test]
fn asset_manifest_entries_are_sorted_and_relative_to_dist() {
let temp = tempfile::tempdir().unwrap();