fix(ci): inherit profiling in bench profile (#9072)

This commit is contained in:
Dan Cline
2024-06-24 19:01:51 -04:00
committed by GitHub
parent 667c38d3d6
commit de6332b51e

View File

@@ -236,9 +236,13 @@ codegen-units = 16
# e.g. `cargo build --profile profiling`
[profile.profiling]
inherits = "release"
debug = 1
debug = 2
strip = false
# Make sure debug symbols are in the bench profile
[profile.bench]
inherits = "profiling"
[profile.maxperf]
inherits = "release"
lto = "fat"