diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-05-08 11:37:01 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-05-08 11:37:01 +0100 |
commit | a12f037e12fa79a8776a0509484846f30570c1ec (patch) | |
tree | 7f43a190c7c358f279402d04ba7bdc8626f7b84d | |
parent | 12e093de224afa017c013bea5e1ccb9a5cd65025 (diff) | |
parent | 1d88a3f4a291b97c86b911791e4fbe7aa45275ec (diff) |
Merge #8762
8762: internal: disable broken incremental builds 😿 r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
-rw-r--r-- | Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index d34251fc0..1f97a1dc5 100644 --- a/Cargo.toml +++ b/Cargo.toml | |||
@@ -16,7 +16,9 @@ text-size.opt-level = 3 | |||
16 | miniz_oxide.opt-level = 3 | 16 | miniz_oxide.opt-level = 3 |
17 | 17 | ||
18 | [profile.release] | 18 | [profile.release] |
19 | incremental = true | 19 | # We do want incremental release builds, but they are broken at the moment :( |
20 | # https://github.com/rust-lang/rust/issues/85003#issuecomment-833796289 | ||
21 | incremental = false | ||
20 | debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger. | 22 | debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger. |
21 | 23 | ||
22 | [patch.'crates-io'] | 24 | [patch.'crates-io'] |