Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ jobs:
cargo make --version || cargo install cargo-make
- name: run test
run: cargo make tests
- name: run test + feature u16limb_circuit
run: cargo make tests_v2
- name: run test w/o u16limb_circuit
run: cargo make tests_non_u16limb
4 changes: 2 additions & 2 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ command = "cargo"
env = { RUST_MIN_STACK = "33554432" }
workspace = false

[tasks.tests_v2]
[tasks.tests_non_u16limb]
args = [
"test",
# Run everything but 'benches'.
Expand All @@ -25,7 +25,7 @@ args = [
"--examples",
"--workspace",
"--features",
"u16limb_circuit",
"goldilocks",
]
command = "cargo"
env = { RUST_MIN_STACK = "33554432" }
Expand Down
2 changes: 1 addition & 1 deletion ceno_zkvm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ glob = "0.3"
default = ["forbid_overflow", "nightly-features", "u16limb_circuit", "parallel"]
flamegraph = ["pprof2/flamegraph", "pprof2/criterion"]
forbid_overflow = []
goldilocks = ["forbid_overflow", "nightly-features"]
goldilocks = ["forbid_overflow", "nightly-features", "parallel"]
jemalloc = ["dep:tikv-jemallocator", "dep:tikv-jemalloc-ctl"]
jemalloc-prof = ["jemalloc", "tikv-jemallocator?/profiling"]
nightly-features = [
Expand Down