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

feat: Forward ports #40

Merged
merged 12 commits into from
Jun 15, 2024
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
pull_token: ${{ secrets.REPO_TOKEN }}
- name: Run exhaustive tests
run: |
cargo nextest run --cargo-profile dev-ci --profile ci --workspace --run-ignored all -E 'all()'
cargo nextest run --cargo-profile dev-ci --profile ci --workspace --features "plonk" --run-ignored all -E 'all()'
- name: Open an issue on failure
if: failure()
uses: JasonEtco/create-an-issue@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
uses: ./.github/actions/setup
with:
pull_token: ${{ secrets.REPO_TOKEN }}
- name: Run cargo test on sphinx except the test_e2e_prove_groth16 recursion test
- name: Run cargo test on sphinx except the test_e2e_prove_plonk recursion test
run: |
cargo nextest run --cargo-profile dev-ci --profile ci --workspace -E 'all() - test(test_e2e_prove_groth16)'
cargo nextest run --cargo-profile dev-ci --profile ci --workspace --features "plonk" -E 'all() - test(test_e2e_prove_plonk)'
- name: Run cargo test with no default features
run: |
cargo nextest run -p sphinx-core --cargo-profile dev-ci --profile ci --no-default-features --features debug -- cpu::trace::tests::generate_trace
cargo nextest run -p sphinx-core --cargo-profile dev-ci --profile ci --no-default-features --features "debug" -- cpu::trace::tests::generate_trace
working-directory: ${{ github.workspace }}/examples

test-recursion-circuit:
Expand Down
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@
],
"rust-analyzer.showUnlinkedFileNotification": false,
"rust-analyzer.check.features": null,
"rust-analyzer.server.extraEnv": {
"CARGO_PROFILE_DEV_BUILD_OVERRIDE_DEBUG": "true",
},
// "rust-analyzer.showUnlinkedFileNotification": false,
// "rust-analyzer.check.workspace": false,
// "rust-analyzer.check.invocationStrategy": "once",
Expand Down
Loading
Loading