Skip to content

Commit

Permalink
ci: activate plonk feature for plonk tests
Browse files Browse the repository at this point in the history
  • Loading branch information
huitseeker committed Jun 14, 2024
1 parent 11272dd commit 15e1af7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit 15e1af7

Please sign in to comment.