Skip to content

Commit d4f982b

Browse files
committed
[meta] set strip = none for release builds
Restore behavior changed in 4e259a7, because it turns out that `strip = "debuginfo"` still strips too much. This was observed with the cargo-nextest 0.9.68-rc.1 binary on illumos, where `pstack` showed lots of ??? marks. Part of #1345.
1 parent ef58431 commit d4f982b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ opt-level = 3
3535
[profile.dev.package.similar]
3636
opt-level = 3
3737

38+
[profile.release]
39+
# Ensure that symbols and debuginfo aren't stripped. They're useful for debugging issues with
40+
# nextest in the field, and don't bloat up binaries too much
41+
strip = "none"
42+
3843
[patch.crates-io]
3944
nextest-workspace-hack = { path = "workspace-hack" }
4045

site/src/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This page documents new features and bugfixes for cargo-nextest. Please see the [stability
44
policy](book/stability.md) for how versioning works with cargo-nextest.
55

6-
## [0.9.68-rc.1] - 2024-03-16
6+
## [0.9.68-rc.2] - 2024-03-16
77

88
This is a maintenance release with many internal improvements, and preparation for future features.
99

0 commit comments

Comments
 (0)