Skip to content

Commit

Permalink
ci: run conformance with debug assertions (#4386)
Browse files Browse the repository at this point in the history
Run conformance with debug assertions enabled to ensure `debug_assert!`s
pass.
  • Loading branch information
overlookmotel committed Jul 21, 2024
1 parent 3708fba commit bcd090a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
ck = "check --workspace --all-features --all-targets --locked"
lint = "clippy --workspace --all-targets --all-features"
codecov = "llvm-cov --workspace --ignore-filename-regex tasks"
coverage = "run -p oxc_coverage --profile release-thin --"
coverage = "run -p oxc_coverage --profile coverage --"
benchmark = "run -p oxc_benchmark --release --"
minsize = "run -p oxc_minsize --release --"
rule = "run -p rulegen"
Expand Down
9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,8 @@ strip = "symbols" # set to `false` for debug information
debug = false # set to `true` for debug information
panic = "abort" # Let it crash and force ourselves to write safe Rust.

# Faster compile time with thin lto
[profile.release-thin]
inherits = "release"
lto = "thin"
# Profile for `cargo coverage`
[profile.coverage]
inherits = "release"
lto = "thin" # Faster compile time with thin lto
debug-assertions = true # Make sure `debug_assert!`s pass

0 comments on commit bcd090a

Please sign in to comment.