Skip to content

Commit

Permalink
ci: download transcript and use in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelelliot committed Jan 24, 2024
1 parent c9eaa62 commit e9cca01
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/build&test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
- name: Build
working-directory: noir/tooling/noir_rs
run: cargo build -vv
- name: Download SRS transcript
working-directory: noir/tooling/noir_rs
run: curl -LO https://aztec-ignition.s3.amazonaws.com/MAIN%20IGNITION/monomial/transcript00.dat
- name: Run tests
working-directory: noir/tooling/noir_rs
run: cargo test -vv
2 changes: 1 addition & 1 deletion noir/tooling/noir_rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ mod tests {
use std::time::Instant;

use crate::{prove, prove_local_srs, prove_net_srs, verify};
const SRS_PATH: &str = "/Users/michael/Dev/Swoir/transcript00.dat";
const SRS_PATH: &str = "transcript00.dat";

#[test]
#[serial]
Expand Down

0 comments on commit e9cca01

Please sign in to comment.