Skip to content

Commit 9612775

Browse files
committed
RUST_BACKTRACE=1
1 parent 04b6579 commit 9612775

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,8 @@ jobs:
112112
- run: pnpm install
113113

114114
- run: ./monitor-oxc ${{ matrix.command }}
115+
env:
116+
RUST_BACKTRACE: "1"
115117

116118
compile-time:
117119
name: Compile Time

Cargo.toml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ must_use_candidate = "allow"
2323
module_name_repetitions = "allow"
2424

2525
[dependencies]
26-
oxc = { path = "../oxc/crates/oxc", features = ["full", "isolated_declarations"] }
26+
oxc = { path = "../oxc/crates/oxc", features = ["full"] }
2727
walkdir = "2.5.0"
2828
similar = "2.5.0"
2929
console = "0.15.8"
@@ -33,9 +33,5 @@ pico-args = "0.5.0"
3333
project-root = "0.2.2"
3434

3535
[profile.release]
36-
opt-level = 3
37-
lto = "thin" # Faster compile time as extreme speed is not needed.
38-
codegen-units = 1
39-
strip = "symbols"
40-
debug = false
41-
panic = "abort"
36+
debug-assertions = true
37+
overflow-checks = true

0 commit comments

Comments
 (0)