Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: download transcript and use in tests #2

Merged
merged 1 commit into from
Jan 24, 2024
Merged
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
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