Skip to content

Commit

Permalink
Disable optimizations for faster testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ruben-arts committed Dec 11, 2024
1 parent 0d6e68c commit 32e5441
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -322,11 +322,17 @@ pixi_pty = { path = "crates/pixi_pty" }
signal-hook = { workspace = true }

[profile.dist]
codegen-units = 1
# codegen-units = 1
#inherits = "release"
#lto = "fat"
#opt-level = 3
#strip = "symbols"
# codegen-units = 1
codegen-units = 16
inherits = "release"
lto = "fat"
opt-level = 3
strip = "symbols"
lto = false
opt-level = 0
strip = false

[profile.ci]
codegen-units = 16
Expand Down

0 comments on commit 32e5441

Please sign in to comment.