fix(raiko): remove useless log & fix prove script (#665) #930
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI - RISC0 | ||
| on: | ||
| workflow_call: | ||
| push: | ||
| branches: ["main"] | ||
| paths: | ||
| - "provers/risc0/**" | ||
| - "!docs/**" | ||
| pull_request: | ||
| paths: | ||
| - "provers/risc0/**" | ||
| - "!docs/**" | ||
| jobs: | ||
| build-test-risc0: | ||
| name: Build and test risc0 | ||
| uses: ./.github/workflows/ci-build-test-reusable.yml | ||
|
Check warning on line 18 in .github/workflows/ci-risc0.yml
|
||
| with: | ||
| version_name: "risc0" | ||
| version_toolchain: "stable" | ||
| integration-test-risc0: | ||
| name: Run integration tests on risc0 | ||
| uses: ./.github/workflows/ci-integration-reusable.yml | ||
|
Check warning on line 25 in .github/workflows/ci-risc0.yml
|
||
| with: | ||
| version_name: "risc0" | ||
| version_toolchain: "nightly-2024-04-17" | ||