Skip to content

Commit 51ce03c

Browse files
committed
CI changes
1 parent 1f64194 commit 51ce03c

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: cargo build --verbose
2323
- name: tests
2424
# We need to increase the stack size for the tests (due to quotient computation)
25-
run: RUST_MIN_STACK=67108864 cargo test --release -- --nocapture --test-threads=1
25+
run: RUST_MIN_STACK=67108864 cargo test all_layers_full_test --release -- --nocapture
2626

2727
mersenne_tests:
2828
name: mersenne_tests

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2024-07-31
1+
nightly-2025-03-31

src/tests/mod.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,6 @@ fn all_layers_setup_test() {
5959
snark_wrapper_tests::snark_wrapper_setup_test();
6060
}
6161

62-
#[test]
63-
fn get_setup_caps() {
64-
let risc_proof: RiscProof = deserialize_from_file(RISC_PROOF_PATH);
65-
66-
serialize_to_file(&risc_proof.setup_tree_caps, "testing_data/setup_caps");
67-
}
68-
6962
const RISC_PROOF_PATH: &str = "testing_data/risc_proof";
7063
const RISC_WRAPPER_PROOF_PATH: &str = "testing_data/risc_wrapper_proof";
7164
const RISC_WRAPPER_VK_PATH: &str = "testing_data/risc_wrapper_vk";

0 commit comments

Comments
 (0)